gnuplot 到 gnuplot.py
有人可以帮我将此 gnuplot 命令转换为 gnuplot.py
gnuplot 命令(在 gnuplot 解释器中工作正常):
plot 'immigration.dat' using 2:xtic(1) ti col, '' u 3 ti col, '' u 4 ti col, '' u 5 ti col
我已在 file.py 中尝试过此操作:
import Gnuplot
g = Gnuplot.Gnuplot(debug=1)
g.plot(Gnuplot.File('immigration.dat', using='2:xtic(1) ti col, '' u 3 ti col, '' u 4 ti col, '' u 5 ti col'))
但结果错误:“第 0 行:未定义的变量:u”,我猜是语法问题。
Can somebody help me convert this gnuplot command to gnuplot.py
gnuplot command(works fine in gnuplot interpreter):
plot 'immigration.dat' using 2:xtic(1) ti col, '' u 3 ti col, '' u 4 ti col, '' u 5 ti col
I have tried this in file.py:
import Gnuplot
g = Gnuplot.Gnuplot(debug=1)
g.plot(Gnuplot.File('immigration.dat', using='2:xtic(1) ti col, '' u 3 ti col, '' u 4 ti col, '' u 5 ti col'))
but results in error:"line 0: undefined variable: u", syntax issue i guess.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
试试这个:
你混合引用了。
Try this:
You were mixing quotes.