# $CVSHeader: pal8e/dat/stat/plot-reliable,v 1.2 2005/02/15 01:10:24 indraneel Rel $

## Run using GNUPlot

set boxwidth 0.20 relative
#set style fill solid 0.50
set style fill pattern

set xrange [0:2.2]
set yrange[20:100]
set xtics 0.0, 0.2, 2.0

set xlabel "RMSD of PDB Coordinates"
set ylabel "% Result Similarity (wrt original coordinates processed by itself)"
set title "Assignment Similarity using Randomly Shifted PDB Coordinates"

#set terminal postscript eps enhanced color blacktext solid "Times-Roman" 12
set terminal postscript eps enhanced "Times-Roman" 18
set output "reliability.eps"

plot \
'rpssd' using 3:1 with lines title "Our Program's definition", \
'rdssp' using 3:1 with lines title "DSSP definition", \
'rpsea' using 3:1 with lines title "P-SEA definition"


