Hi,
I have 3 pieces of code. The first one can show the title "normal" and
"wrongness" of each annotation, while the second and the third one cannot.
How to make the second and third code show the title of each annotation?
Thanks!
First code:
gnuplot <<EOF
set terminal postscript 'Helvetica' 18 enhanced eps color
set output "/tmp/stability.eps"
set xlabel "Log ratio of original sample before noise"
set ylabel "how many responses become greater after noise"
plot '${TMPDIR}/perturbations_a.dat' using 1:5 pt 7 ps 0.5 title "normal",\
'${TMPDIR}/perturbations_b.dat' using 1:5 pt 7 ps 0.5 title
"wrongness"
EOF
Second code:
gnuplot <<EOF
set terminal postscript 'Helvetica' 18 enhanced eps color
set output "/tmp/perturbations1.eps"
set xlabel "Log ratio of original sample"
set ylabel "Perturbated predictor response"
plot [-60:-10][-10:10] '${TMPDIR}/perturbations_a.dat' with yerrorbars lw 1
pt 6 lt 1 lc 2 title "normal",\
'${TMPDIR}/perturbations_b.dat' with yerrorbars lw 1
pt 6 lt 1 lc 1 title "wrongness"
EOF
Third code:
gnuplot <<EOF
set terminal postscript 'Helvetica' 18 enhanced eps color
set output "/tmp/FP_stability.eps"
set xlabel "Log ratio of original sample before noise"
set ylabel "variance of '$1' response after noise"
plot [:][:] \
'${TMPDIR}/pos_perturbations_a.dat' using 1:6 pt 6 lc 2 title
"normal",\
'${TMPDIR}/pos_perturbations_b.dat' using 1:6 pt 6 lc 1 title
"wrongness"
EOF
--
View this message in context: http://www.nabble.com/Title-of-each-annotation-not-shown-tp22859931p22859931.html
Sent from the Gnuplot - User mailing list archive at Nabble.com.
|