我已经查看了问题,但仍然无法正常工作。
我的数据集是这样的:
[date] , [%cpu] , [mem]
23:00:39 , 21.9 , 2.1
23:00:44 , 21.8 , 2.1
23:00:49 , 21.8 , 2.1
23:00:54 , 21.8 , 2.1
23:00:59 , 21.7 , 2.1
我的 Gnuplot 语句(刚开始用于此数据)是:
set timefmt "%H:%m:%s"
set xdata time
set datafile sep ','
plot '/tmp/info' using 2 title 'cpu' with lines, '/tmp/info' using 3 title 'memory%' with lines
我收到以下错误:
Need full using spec for x time data
我试过 autoscale x ,但我有点迷茫,任何帮助将不胜感激。