I have data in some text file which has let's say 10000 rows and 2 columns. I know that I can plot it easily by plot "filename.txt" using 1:2 with lines . What I want is however just plotting let's say the rows from 1000 to 2000 or any other reasonable selection. Is it possible to do that easily? Thank you very much in advance.
|
|
|||
|
|
|
More simpler:
|
|||
|
It appears that the "every" command in gnuplot is what you're looking for:
Alternatively, pre-process your file to select the rows in which you are interested. For example, using awk:
Then use the resulting "processed.txt" in your existing gnuplot command/script. |
|||||
|
|
You can probably cut out the reliance on an external utility (If your system doesn't have them installed for example) using the pseudo-column 0. see Try something like:
(tested on Gnuplot 4.4.2, Linux) |
|||
|
|
|
Gnuplot ignores NaN values. This works for me for a specified range of the x coordinate. Not sure how to specify row range though.
|
|||
|
|
|
I would recommend some commandline tools like sed, grep or bash. In your example "head -n 2000 ./file.data > temp.data" and "tail -n 1000 temp.data > temp2.data" might work. But haven't tested if such large numbers work with head and tail. |
|||
|
|