|
From: <HBB...@t-...> - 2007-11-01 21:20:22
|
William Xu wrote: >>From the manual, i manage to do the filtering with the following trick: ... what filtering? You've removed all context, so it's hard to know what you might be talking about. > ,---- > | plot 'result.log' using ($4 == 1 $3 : 1/0):5 title '1 session' with linespoints > `---- > > However, seems `with linespoints' part doesn't work, it display as > dots. What's the problem here? The problem is that you hwave way too many undefined points in your input. Lines can only be drawn between consequtive valid points. Looks like there are no two valid points without an invalid one between them, in your entire file. In this case, a simple 'every 2' filter might work better than the above. |