|
From: Hans-Bernhard B. <HBB...@t-...> - 2010-07-01 14:31:23
|
Am 30.06.2010 23:00, schrieb János Löbb: > plot [$0:$1][] "/Volumes/Data/PROJECTS/Sysmon/outs/workerprocess.out" using 1:( column(2)> 0 ? column(2) : 1) title "Total Worker Requested" with points pointtype 7 pointsize 0.4,"" using 1:( column(2)> 0 ? column(2) : 1) title "Bezier" smooth bezier with lines linetype -1 > > and call the program containing this plot command as: > > gnuplot> call '/Volumes/Data/PROJECTS/Sysmon/gnuplot_cmds/workerprocess_multi.gp' "Jun 01, 2010 00:03:11" "Jun 30, 2010 00:03:04" > I also tried single quote with no difference. You need _both_. I.e. you have to nest the quotes --- one outer pair for 'call' to eat, the second, inner pair that is necessary for the syntax of time-date constants: call '/Volumes/Data/PROJECTS/Sysmon/gnuplot_cmd/workerprocess_multi.gp'\ "'Jun 01, 2010 00:03:11'" \ "'Jun 30, 2010 00:03:04'" |