Friends, i have some vast amount of data to be printed on a graph using gnuplot. Since the number of points in the graph is too large, i am using a cspline data interpolation method to smoothen the data. But the interpolation method is skipping some outliers which may be important in the analysis of performance of program. How should I make sure that the extreme outliers (values differing by more than x) are not missed by the gnuplot function.
Here is the code i am using to generate plots.
plot data_file binary format='%uint64 %double %double %double' using 1:2 smooth csplines title "Kernel hit-rate" with lines, \
data_file binary format='%uint64 %double %double %double' using 1:3 smooth csplines title "User hit-rate" with lines, \
data_file binary format='%uint64 %double %double %double' using 1:4 smooth csplines title "Overall hit-rate" with lines
The graphs generated are given below :


I want gnuplot to smoothen points only if they are not too far (a configurable parameter) ?? Also can you suggest any other plotting tool that can do what i require ??
set samples Ncould be used to increase your sampling frequency which would probably make the first graph look more like the second one (with a reasonably large N)... – mgilson Apr 2 '12 at 11:28