|
From: Paulo J. M. <poc...@gm...> - 2011-03-28 20:31:57
|
Hi, thanks very much. The problem with that solution is that it doesn't meet the following requirement: "However, I want the xtics to be equally spaced. So, 1000 should be further from 1200 than 1500 from 1550." So, for example, only the tics for 1000, 1200, 1500, 1550, 1600 and 1750 should show up. Then the line graph for data.dat would have a point in 1000, 1500 and 1750. There would then be 3 points for data1.dat in 1550, 1600 and 1750. I am sorry if I wasn't initially very explicit. Cheers, -- PMatos 2011/3/28 Hans-Bernhard Bröker <HBB...@t-...>: > 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. > -- PMatos |