如何绘制/显示“.dat”在 Python 中使用 gnuplot 文件
我目前正在尝试使用 gnuplot 绘制数据。我的文件夹中有几个 .dat 文件,我希望使用一些简单的命令/脚本绘制所有数据(见下文)。我怎样才能让它发挥作用?
我目前正在使用这个作品:
#!/usr/bin/gnuplot
set terminal postscript eps enhanced color
set output "DMF-10-8-.eps"
set xrange[1:10]
set yrange[0:1]
plot "DMF-10-8.dat" using 1:2 with lines title "XXX", "DMF-10-8-wmnuy9.dat" using 1:2 with lines title "YYY"
I'm currently trying to plot my data using gnuplot. I have several .dat files in a folder, and I wish to plot all my data using some simple command/script (see below). How can I make it work?
I'm using this piece currently:
#!/usr/bin/gnuplot
set terminal postscript eps enhanced color
set output "DMF-10-8-.eps"
set xrange[1:10]
set yrange[0:1]
plot "DMF-10-8.dat" using 1:2 with lines title "XXX", "DMF-10-8-wmnuy9.dat" using 1:2 with lines title "YYY"
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果要绘制大量文件,请按特定顺序命名它们。然后使用
gnuplot
模块 Python 用循环连续绘制它们。If you want to plot a lot of files, name them in a particular sequence. Then use the
gnuplot
module in Python to plot them consecutively with a loop.