From: Jason G. <jjg...@nc...> - 2013-04-26 21:20:17
|
I believe I have found a bug where data from a one row data file doesn't get rendered when multiple plots are used. Providing data and plot file below. If you add a dummy line to the one line data file it plots fine. If you only plot the one line data file it also is find. I want to cluster based on f1 and f2. data file 1 - f1.data "Title" "Percent 1" "Percent 2" Type1 87.896832 12.103168 data file 2 - f2.data "Title" "Percent 1" "Percent 2" Type2 73.676931 26.323069 Type3 73.983282 26.016718 Type1 26.836433 plotfile: set title "Percentages" set ylabel "Pecentage of Data" set yrange [0:100] set terminal postscript color set output "test.ps" set style data histogram set style histogram rowstacked gap 1 set style fill solid border -1 set boxwidth .5 set key autotitle columnheader set xtics rotate by -45 plot newhistogram "1" lt 1, "f1.data" u 2:xtic(1) title 'P1', '' using 3 title 'P2', \ newhistogram "2" lt 1, "f2.data" u 2:xtic(1) notitle, '' using 3 notitle |