I have a log file with time and value like that:
1 1
2 1
3 2
4 3
5 3
6 4
10 4
15 4
20 5
25 5
Plotting it (with linesp) produces something like this:
5| ,----x---------x
4| ,x-------x---------x---'
3| ,x-x
2| ,x
1|x-x
|___________________________________________________
1 2 3 4 5 6 _ _ _10 _ _ _ _15 _ _ _ _20 _ _ _ _25
If I have a lot of values in my file, the left points become very crowded (when using with linesp). How can I setup a well defined step size (skipping some of those crowded tuples). For example, I want to plot only one tuple per 5 seconds.
5| ,----x---------x
4| ,-------x---------x---'
3| ,--x'
2| ,'
1|--'
|___________________________________________________
1 2 3 4 5 6 _ _ _10 _ _ _ _15 _ _ _ _20 _ _ _ _25
In the end, on those sparse tuples I'd like to add error bars (which I currently have on all points).

