|
From: Hans-Bernhard B. <HBB...@t-...> - 2011-03-28 19:51:40
|
On 28.03.2011 16:18, Paulo J. Matos wrote: > I have tried: > set xtics (1000 1, 1200 2, 1500 3, 1550 4, 1600 5, 1750 6) > plot 'data.dat' using 2:xtic(1) with linespoints, 'data1.dat' using > 2:xtic(1) with points Looks like you're trying way too hard. From what you said you wanted, a much simpler plot 'data.dat' u 1:2 w lp, 'data1.dat' u 1:2 w p would have fit the bill. |