我试图编写一些命令行Julia程序来生成和保存图表。
这有效:
ERROR: LoadError: MethodError: no method matching getindex(::PyPlot.Figure, ::Symbol)
The applicable method may be too new: running in world age 21855, while current world is 21864.
但这并不是:
#!/usr/bin/env julia
using Plots
function main(args)
plot(1:100,1:100)
savefig("foo.png")
end
pyplot()
main(ARGS)
失败
dc
欢迎任何想法或指示!
更新 - 感谢您的所有建议。这是一个解决方法:
dc = dc.T