I have one column of data (y axis) where each of 4 rows corresponds to a temperature (x axis). I can use xtics from 0-3 for the four temperatures, but the xtic labels represent temperatures with uneven intervals. I want to plot each row of data at specified xtics so the intervals reflect that of the temperatures. Is this possible?
Using the following instructions
set xrange [0:3]
set xtics ("253" 0, "294" 1, "310" 2, "350" 3)
I get my four rows plotted at the four temperatures, but the x values are evenly spaced by 1 tic. I'd rather have my data spaced to the same xtic values as the temperature.
I thought I could use
set xtics ("253" 253, "294" 294, "310" 310, "350" 350)
but the data is still plotted at tics 0-3.
Can I use something like
plot "file.dat" using 1:xtics(253,294,310,350)
This doesn't work but it's just an idea. Thank you in advance for any input and help!