|
From: Thomas S. <t.s...@fz...> - 2016-01-02 10:23:32
|
Kevin Oberman <rkoberman <at> gmail.com> writes: > > I am baffled by a failure I am having in attempting to generate a series of > plots on a single image. The inputs are from stdin. I get only the first > and last of the five plots, although the titles for all five are shown. No > errors reported. > > I have recorded the stream sent to gnuplot and can see no problems, though > I suspect I am missing a simpler way to do it. > ... > plot "-" using 1:2 title "2016-01-01" with lines, "-" using 1:3 title > "2015-12-31" with lines, "-" using 1:4 title "2015-12-30" with lists, "-" > using 1:5 title "2015-12-29" with lists, "-" using 1:6 title "2015-12-28" > with lists > ... i would suspect that the 1st and the 2nd plot are working, the others cant't due to a syntax error. change "with lists" to "with lines" in the plot command. |