-1
我需要繪製具有簡單表格結構的CSV文件:第一列 - 時間%H:%M:%S格式,下一列標題和一定的時間值。 這裏例如:我使用Gnuplot沒有畫線
set xdata time
set timefmt "%H:%M:%S"
set format x "%H:%M:%S"
set datafile separator ","
plot for[col=2:5] file.csv using 1:col with lines title columnheader
一切正常,就像我需要
,A,B,C,D,E,F, ...
09:00:00,10,56,13,146,15
09:00:01,20,,,81
09:00:02,30,54,82
09:00:03,,,32
09:00:04,50,,105
09:00:05,,8
...
命令。但是如果我想畫某列像
plot file.csv using 1:"A" with lines title columnheader, \
file.csv using 1:"D" with lines title columnheader
gnuplot的打印
warning: no column with header "A"
warning: no column with header "D"
空情節,但如果我使用分它的工作原理,但仍給予同樣的警告
怎樣繪製曲線與線條?
在此先感謝。
如果我引用文件名,使用Gnuplot版本5.0 patchlevel 3,你的例子在這裏工作。我確實得到了這個警告:'警告:沒有標題爲「D」的列,但情節似乎有效。 – Thor
這可能是一個錯誤。 – Thor