在 bash 脚本中更改图形屏幕 gnuplot 上的位置

在 bash 脚本中更改图形屏幕 gnuplot 上的位置

我在 bash 中有一个脚本,它读取文件 Throughputtx.txt 并在 GNUPLOT 图表中打印此信息,但该图表显示在屏幕的左侧,我希望它打印在屏幕的中央。

gnuplot --persist -e "set xlabel \"No. Payload\"; set ylabel \"Throughput TX [bps]\"; plot \"Throughputtx.txt\" using 1:2 title 'Throughput in TX' with lines"

相关内容