0
我有下面的代碼,其生成疊加柱狀圖:GNUPLOT羣集在x範圍爲堆疊直方圖
#!/usr/bin/gnuplot
set term postscript eps enhanced color
#set output 'stacked-hist.eps'
set output ARG1.'.eps'
set title ARG1
set key top left outside horizontal autotitle columnhead
#set xtics rotate by 90 offset 0,-5 out nomirror
set autoscale x
set ytics out nomirror
set style fill solid border -1
set boxwidth 0.5 relative
set style data histograms
set style histogram rowstacked
set xlabel "Degree of node"
plot ARG1 using 2, '' using 3:xtic(1)
我想有是繼(在輸入數據時,我沒有每X很多個數據點,所以我想看看直方圖的集羣,如下圖所示:
有沒有辦法在gnuplot中做到這一點? 這種疊加直方圖是否有正式名稱? (分組堆積直方圖)
你能提供更多的信息嗎?目前還不清楚如何解釋您的示例圖,因此不清楚如何重現它。 200
可能有200到1000之間的一些數據點,但我想忽略它們。在gnuplot中可能嗎? – Trojosh