I've got a multiplot like this:
How do I remove the trailing white space added by the xtics
interval? Relevant configurations include:
set xtics 10
set mxtics 5
Data for the xaxis
goes up to somewhere between 135 and 140.
Thanks.
I've got a multiplot like this:
How do I remove the trailing white space added by the xtics
interval? Relevant configurations include:
set xtics 10
set mxtics 5
Data for the xaxis
goes up to somewhere between 135 and 140.
Thanks.
自動スケーリングされた x 軸の次の目盛りへの自動拡張を無効にするには、次を使用します。
set autoscale xfix
一般的な構文は次のとおりです。
set autoscale {<axes>{|min|max|fixmin|fixmax|fix} | fix | keepfix}
データが適切なラウンド値で終わらない場合は、xrange を明示的に設定する必要があります。これを行う 1 つの方法は、stats
コマンド (gnuplot 4.6.0) 以降を使用することです。
stats 'data.dat'
set xrange[STATS_min_x:STATS_max_x]
それ以外の場合はset xrange
、手動で (値がわかっている場合)、または昔ながらの方法を使用できます。
set output '/dev/null'
plot 'data.dat'
set xrange[GPVAL_DATA_X_MIN:GPVAL_DATA_X_MAX]
set output'actual_output.png'
replot