I would like a way to plot only the last (final) dataset in a file that contains multiple datasets. Can anyone suggest a way of doing that? e.g. if I know there are exactly 10 datasets in the file then:
plot 'myfile.txt' index 9
would plot the final one. I don't know in advance how many datasets there will be though. On the off-chance that it might work, I tried
plot 'myfile.txt' index -1
but no joy. Is there any way to do what I want?