【发布时间】:2023-03-16 00:51:01
【问题描述】:
如何在散点图上绘制第二个 x 轴变量(两个 x 轴变量必须是相同的单位!)?enter image description here
这是文件 .sh
set multiplot
set datafile separator ","
set autoscale
set title "r"
set xlabel "Time"
set ylabel "r"
plot '22_2_trapel_total.csv' u 1:3 w l lt 1 lc rgb 'red' lw 1.5 title 'r5_z0',
plot'22_2_trapel_total.csv' u 6:7 w l lt 1 lc rgb 'red' dashtype 0.5 lw 1.5 title 'new_r5_z0',
【问题讨论】:
标签: csv gnuplot scatter-plot