對不起,如果這看起來像一個簡單的問題(可能),但我搜索周圍得到一些解決方案無濟於事。增加聚集條形圖(直方圖)中xtic之間的間距
我已經繪製了一個條形圖,如圖所示(附)在這裏。我的問題是調整標籤之間的間距,每個xtic彼此重疊。如果您注意到我在此附加的條形圖,在x軸上,「第三個標籤」和「第四個標籤長」彼此重疊。無論如何要控制間距,使標籤不重疊?另外,我需要傳說(ring1,ring2和ring12)以斜體表示。由於我使用「終端pngcairo」,有沒有辦法用斜體字來做?
set terminal pngcairo size 550,350 enhanced dash
set output "xplot_ACF_ring1-ring2-head-plots2.png"
set macro
labelFONT="font 'arial,22'"
scaleFONT="font 'arial,12'"
scaleFONT2="font 'helvetica,13'"
keyFONT="font 'arial,18'"
########################################################################################
set ylabel "Time in (ns)" @labelFONT
set ytic @scaleFONT
set xtic scale 0 @scaleFONT
set size 1.0, 1.0
########################################################################################
ring1 = "#ff0000"; ring2 = "#7FFF00"; ring12 = "#0000FF"
set auto x
set yrange [65:90]
set style data histogram
set style histogram cluster gap 1.5
set style fill solid 1.0 border -1
set boxwidth 0.9 relative
plot 'mal-cel-iso-bcm-ring1-ring2-head-bar-plot2.dat' using 2:xtic(1) ti col fc rgb ring1 ,\
'' u 3 ti col fc rgb ring2 ,\
'' u 4 ti col fc rgb ring12
對於上面的腳本的數據是
Title "ring1" "ring2" "ring12"
"First label" 70 76 77
"Second label" 68 71 69
"Third label" 76 72 68
"Fourth label long" 75 76 77
下面是情節執行腳本之後,我得到。
這篇文章的再版從這裏開始:
我想補充錯誤吧在這個情節。示例數據如下:
Title "ring1" "ring2" "ring12"
"" 77.295326 2.2 74.829245 3.2 78.238016 2.1
"" 77.613533 6.2 74.123269 1.5 79.704782 3.6
"" 76.589653 2.1 71.704465 2.6 78.736618 4.2
"" 75.996256 0.4 73.407460 3.3 77.290057 2.5
第三個第五和第七列實際上是錯誤值。
我希望提前感謝。
你的意思是傳統的errobars,就像在http://gnuplot.sourceforge.net/demo_4.6/mgr.html中一樣?請爲此提出一個新的問題,否則這個問題會變得相當複雜,因爲帶有標籤和錯誤條的兩點是完全相關的。 – Christoph
是的,先生。感謝您的建議。我將作爲單獨的職位。 – user669212