问题标签 [gadfly]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
plot - 使用“julia -i”运行脚本时无法使用 Gadfly 绘图
julia
从命令行运行REPL 并复制粘贴我的脚本时,Gadflyplot
命令按预期工作。
但是,当运行julia -i scriptname.jl
plot
不再工作并打印时:
是否需要进行设置才能使其工作?
julia - 在不使用 Geom.point 的情况下在 Gadfly 中使用 Geom.abline
我正在尝试使用在 Gadfly 中绘制几条直线Geom.abline
。这仅在我添加一些虚拟点并使用时才对我有用Geom.point
。例如,下面的代码片段会产生所需的情节,并带有一些我不想要的虚拟点。
但是,当我摆脱这些点时,我会在此评论的底部收到错误消息。这里有一些尝试给我同样的错误。
没有使用就没有办法Geom.abline
在 Gadfly 中使用Geom.point
吗?(我想我可以让这些点不可见。)