I have the following gnu graph:
set term png
set output "automobile.png"
set datafile separator ","
set title "Price versus Curb weight"
set xlabel "Price in dollars"
set ylabel "Curb weight in pounds"
set grid
plot 'x' using 1:2
quit
x is a file containing numbers such as
1,2
0.5,4
and etc.
I would like to make a few changes to this plot.
At the top of the graph there is "x using 1: 2", and I would like to remove this.
Finally, the most important thing: I would like to add another file, y, in the same format, which will also be plotted on the same plot, only with a different sign and color (instead of the pluses in red) for example, blue triangles. I would prefer the pluses to be circles.
kloop source
share