I am new to gnuplot. I have csv file like this:
category| date | value
a |2016-04-01 | 0,2
a |2016-04-02 | 0,31
a |2016-04-03 | 0,14
....
a |2016-04-11 | 0,4
b |2016-04-01 | 0,32
b |2016-04-02 | 0,31
....
b |2016-04-10 | 0,15
C |2016-04-01 | 0,15
C |2016-04-02 | 0,23
.....
And so on
How do I plot data for each category on different graph in one command?
For example, if I have 9 distinct categories, then I have 9 graphs where x axis is for date, and y axis is for value.