以下是我的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个数据。所以基本上输出数字如下所示:
由于我有100个数据,所以在上面的图片中,非常频繁的" bar"显示在x轴上方。所以我的问题是,如何消除"小酒吧"在上图中的x轴上?
答案 0 :(得分:1)
您使用错误的方式设置xtics。没有必要使用xtic()
。只需使用set xtics
:
set xtics 200
plot 'plot/test.csv' using ($0*10):2