有谁知道如何摆脱"小酒吧"在gnuplot图中?

时间:2015-06-05 17:38:39

标签: gnuplot

以下是我的gnuplot代码。

set term pdf enhanced
set output "plot/test.pdf"
set datafile separator ","
set xtics norangelimit
set ytics nomirror
set termoption dashed
set xlabel "times"
set yrange [0:100]
set xtics nomirror
set grid ytics
set key right bottom
plot 'plot/test.csv' using 2:xtic((int($0)%20)==0?sprintf("%d", $0*10):"") title "Comparing with the original" with lines lw 2 lc rgb "#DC143C" 

在数据文件中,我有100个数据。所以基本上输出数字如下所示:

enter image description here

由于我有100个数据,所以在上面的图片中,非常频繁的" bar"显示在x轴上方。所以我的问题是,如何消除"小酒吧"在上图中的x轴上?

1 个答案:

答案 0 :(得分:1)

您使用错误的方式设置xtics。没有必要使用xtic()。只需使用set xtics

set xtics 200
plot 'plot/test.csv' using ($0*10):2