1# 2# Demo of a Rug Plot 3# The X and Y coordinates of each point are marked by a mark 4# on the corresponding axis. 5# 6load "gen-random.inc" 7 8unset key 9set bmargin at screen .2; 10set rmargin at screen .8; set lmargin at screen .2; 11set offset .08, .08, .08, .08 12set border lw 0.5 13 14set title "Rug Plot" font ",24" offset 0,.5 15 16set xtics out scale 3 17set ytics out scale 3 18plot $random every 15 using 1:2:xtic(""):ytic("") with points ps .5 19 20pause -1 "Hit <cr> to continue" 21reset 22