Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

add horizontal line histogram gnuplot

I would like to add a horizontal line in my histogram in gnuplot, is that possible?

My histogram has on the x axis: alea1 alea 2 alea3 nalea1 nalea 2 nalea 3 and the y axis goes from 0 to 25.

At 22, I want to add a horizontal line that goes all the way across from one end to the other end of the histogram.

like image 565
Audrey Lee-Gosselin Avatar asked Nov 21 '12 16:11

Audrey Lee-Gosselin


Video Answer


1 Answers

Try adding

, 22 title ""

at the end of your plot command. Works for my test data (file "histo"):

# Year  Red   Green  Blue
1990    33    45     18
1991    35    42     19
1992    34    44     14
1993    37    43     25
1994    47    15     30
1995    41    14     32
1996    42    20     35
1997    39    21     31

plot "histo" u 2 t "Red" w histograms, "" u 3 t "Green" w histograms, "" u 4 t "Blue" w histograms, 22 title ""

(taken from Philip K. Janert, Gnuplot in Action)

like image 63
vaettchen Avatar answered Nov 10 '22 00:11

vaettchen