Sophie

Sophie

distrib > Mageia > 7 > armv7hl > media > core-release > by-pkgid > 619a92f9084d5359442c6f38b85238d7 > files > 199

gnuplot-nox-5.2.2-5.mga7.armv7hl.rpm

#
# Demo of a Rug Plot
# The X and Y coordinates of each point are marked by a mark
# on the corresponding axis.
#
load "gen-random.inc"

unset key
set bmargin at screen .2; 
set rmargin at screen .8; set lmargin at screen .2;
set offset .08, .08, .08, .08
set border lw 0.5

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

set xtics out scale 3
set ytics out scale 3
plot $random every 15 using 1:2:xtic(""):ytic("") with points ps .5

pause -1 "Hit <cr> to continue"
reset