I am doing a multiplot in gnuplot. I want to pick the labels for the points from certain columns. For example, say the data file is:
year temp label1 year humidity label2 1990 30 hot 1991 100 wet 1992 25 warm 1992 83 dry I want to plot column 2 (temp) versus column 1 (year) using column 3 (label1) as label for the points and on the same graph plot column 5 (humidity) versus column 4 (year) using column 6 (label2) as label. Is this possible?
plot 'weather.dat' using 1:2 with points with labels, '' using 4:5 with points with labels 