|
From: Thomas S. <t.s...@fz...> - 2009-06-09 14:48:39
|
you could call your script inside the plot command and thus save the
intermediate file:
plot "< your_script datafilename" using .....
in principle the same as i suggested in my last email:
plot "< awk '{if (\$14 == 300) print NR \" \" \$0}' mem.log" using 1:7
linetype 1 title "foo" with filledcurves x1
Stepp wrote:
>
> Hi Thomas
>
>
> Thomas Sefzick wrote:
>>
>> if there is no curve, there is no filling, just white space.
>>
>> to see that gnuplot behaves as expected plot 'with linespoints'
>>
>> but if you want a connection between points over some undefined
>> points in between, then you need to filter your data outside gnuplot,
>>
>
> No, you misunderstood. I don't want that white space at all. Kind of
> plot inp using ($14==300 ? $6 : "don't plot that value at all")
> linetype 1 title "foo" with filledcurves x1
>
> Well, I wrote a skript that extracts the values $6 from exclusive values,
> e.g. 300, and write them to a file. The rest is gnuplot trivial.
>
>
> Thx
>
--
View this message in context: http://www.nabble.com/Plotting-exclusive-values-tp23907153p23944323.html
Sent from the Gnuplot - Dev mailing list archive at Nabble.com.
|