From: <us...@be...> - 2014-04-24 15:50:46
|
Zitat von Jon Gjengset <jo...@th...>: >> >> However, if you want to do this sort of thing it does not require a >> patch to gnuplot, just use a function. >> >> max(x) =(if (x>biggest)?biggest=max:(x)) >> biggest=-1e-134; plot datafile 1:max($2) >> plot datafile 1:($2/biggest) > > Ah, of course, why didn't I think of that?! Thats also somthing which can be done with the stats command: stats datafile using 2 plot datafile using 1:($2/STATS_max) Christoph |