Hi, I've been searching for info about custom interval in gnuplot, lets say I got this series of data;
Code:
time data
1 0
2 0
3 40
4 53
5 50
6 142
7 342
8 12
9 545
10 134
I want to plot them with an interval of 2 so the data that will be taken and plotted are;
Code:
time data
2 0
4 53
6 142
8 12
10 134
My actual data are up to 300 and tried adjusting tics, it is not what I want because adjusting tics only adjusts the x-axis label.
Thank you in advance