Back to demo index

gnuplot demo script: rugplot.dem

autogenerated by webify.pl on Sat Nov 17 14:40:03 2012
gnuplot version gnuplot 4.7 patchlevel 0
#
# Demo of a Rug Plot
# The X and Y coordinates of each point are marked by a tic
# on the corresponding axis.
#
unset key
set bmargin at screen .2; 
set rmargin at screen .8; set lmargin at screen .2;
set offset .08, .08, .08, .08

set title "Rug Plot" font ",20" offset 0,.5

set xtics out scale 3
set ytics out scale 3
set border lw 0.5

plot 'random.tmp' every 15 using 1:2:xtic(""):ytic("") with points ps .5


Click here for minimal script to generate this plot