我有以下CSV数据:
-140,0
-139,0
-138,0
...
-4,240
-3,609
-2,1426
-1,7352
+0,624209
+1,7269
+2,1376
+3,553
...
+138,0
+139,0
+140,0
以下gnuplot命令:
set terminal x11
set xrange [-10:10]
set auto y
set datafile separator ","
set xtics 1
plot 'histogram1min.csv' using 1:2 title columnheader with boxes
pause mouse
这将创建一个x轴直方图,其值为-10
到+10
,步长为1
。
我想更改x轴,以便-10
显示-0.0010
,-9
显示为-0.0009
等。-e.e。我们不是使用-10 to +10
,而是将x轴除以1000
,但使用相同的数据集 - 。
因此,为了进一步澄清,数据点-0.001
的值为7352
。
答案 0 :(得分:1)
使用第1列时,只需在那里进行划分。您将不得不摆脱设置的xrange并设置xtics线或调整这些值。
plot 'histogram1min.csv' using ($1/1000):2 title columnheader with boxes