如何绘制/显示“.dat”在 Python 中使用 gnuplot 文件

发布于 2025-01-07 04:12:45 字数 369 浏览 0 评论 0原文

我目前正在尝试使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

貪欢 2025-01-14 04:12:45

如果要绘制大量文件,请按特定顺序命名它们。然后使用 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文