使用 bash 自动进行 gnuplot 绘图

使用 bash 自动进行 gnuplot 绘图

我有 6 个文件需要绘制为带有误差范围的折线图并将它们输出到不同的 png 文件。文件格式如下。

秒 平均值 最小值 最大值

我将如何自动绘制这些图表?所以我运行一个名为 bash.sh 的文件,它将获取 6 个文件并将图表输出到不同的.png文件。还需要标题和轴标签。

答案1

如果我理解正确的话,这就是你想要的:

for FILE in *; do
    gnuplot <<- EOF
        set xlabel "Label"
        set ylabel "Label2"
        set title "Graph title"   
        set term png
        set output "${FILE}.png"
        plot "${FILE}" using 1:2:3:4 with errorbars
EOF
done

这假设您的文件全部位于当前目录中。上面是一个将生成图表的 bash 脚本。就我个人而言,我通常使用某种形式的脚本编写一个 gnuplot 命令文件(称之为gnuplot_in),为每个文件使用上述命令并使用gnuplot < gnuplot_in.

给你一个例子,在Python中:

#!/usr/bin/env python3
import glob
commands=open("gnuplot_in", 'w')
print("""set xlabel "Label"
set ylabel "Label2"
set term png""", file=commands)

for datafile in glob.iglob("Your_file_glob_pattern"):
    # Here, you can tweak the output png file name.
    print('set output "{output}.png"'.format( output=datafile ), file=commands )
    print('plot "{file_name}" using 1:2:3:4 with errorbars title "Graph title"'.format( file_name = datafile ), file=commands)

commands.close()

其中Your_file_glob_pattern是描述数据文件命名的内容,可以是**dat.当然glob,您也可以使用模块来代替模块。os确实,无论什么都会生成文件名列表。

答案2

Bash 解决方案,使用临时命令文件:

echo > gnuplot.in 
for FILE in *; do
    echo "set xlabel \"Label\"" >> gnuplot.in
    echo "set ylabel \"Label2\"" >> gnuplot.in
    echo "set term png" >> gnuplot.in
    echo "set output \"${FILE}.png\" >> gnuplot.in
    echo "plot \"${FILE}\" using 1:2:3:4 with errorbars title \"Graph title\"" >> gnuplot.in
done
gnuplot gnuplot.in

答案3

这可能会有所帮助。

#set terminal postfile       (These commented lines would be used to )
#set output  "d1_plot.ps"    (generate a postscript file.            )
set title "Energy vs. Time for Sample Data"
set xlabel "Time"
set ylabel "Energy"
plot "d1.dat" with lines
pause -1 "Hit any key to continue"

将脚本文件执行为gnuplot filename.

点击这里了解更多详情。

相关内容