i have two data file listed below file1.dat
a b c d(There is no colum name in my file)
70.9 70.4 71.3 65.6
70.8 70.9 72.8 68.1
72.00 72.4 70.6 67.9
70.2 71.5 71.7 70.9
71.00 71.2 71.1 71.7
71.5 71.3 71.1 71.4
file2.dat
a b c d(There is no colum name in my file)
70.9 67.5 71.3 64.67
72.2 71.2 72.8 65.5
72.4 70.2 70.6 68.6
71.6 72.1 71.3 67.9
70.2 72.2 71.1 70.8
71.2 71.7 71.9 71.7
72.00 71.4 71.7 71.3
70.8 71.7 71.4 71.3
i want to create a graph a1,a2 b1,b2 c1,c2 d1,d2 how it will possible?
the code:
set title "Unigram features ranked using MI of POSITIVE class"
set title font ", 20"
set xlabel "Feature Length"
set xlabel font ",20"
set ylabel "Accuracy(%)"
set yrange [65:75]
set ylabel font ",20"
set ytics font ", 20"
set boxwidth 0.98
set key font ",18"
set style fill pattern #solid
set style histogram clustered #gap 5 title offset character 0, 0, 0
set xtics font ", 20"
set xtics ("100" 0, "300" 1, "500" 2, "1300" 3, "1500" 4, "1800" 5, "1900" 6, "2000" 7)
set style data histograms
plot "< paste without_threshold_POSITIVE.dat with_threshold_POSITIVE.dat" using 1:5 every ::1, \
"" using 2:6 every ::1, \
"" using 3:7 every ::1, \
"" using 4:8 every ::1
set output 'POSITIVE_test.eps'
set terminal postscript eps enhanced black
replot
please find the code..and try point out my mistake