我有以下输入数据格式,例如:
9/18/2015,08.00.00,101
9/18/2015,08.15.00,203
9/18/2015,08.30.00,429
. . .
9/19/2015,08.00.00,50
9/19/2015,08.15.11,77
9/19/2015,08.30.05,200
. . .
9/20/2015,08.00.50,446
9/20/2015,08.15.00,431
9/20/2015,08.30.00,580
. . .
我想使用gnuplot 5.0生成3D图(例如墙图),其中X轴表示给定日期的“%H.%M”,Y轴表示唯一日期(%m / %d)对于当天的所有%H:%M,Z轴表示整数值(因变量)。
以下代码对我不起作用,因为我在Y轴上重复了一个日期(如09/18),并且Z轴值似乎在X-Y轴上对角线绘制。任何指导都将不胜感激。
代码示例:
reset
set terminal wxt enhanced
set datafile separator ","
set xlabel "Hour"
set ylabel "Date"
set zlabel "Int"
set timefmt '%m/%d/%Y,%H.%M.%S'
set xdata time
set ydata time
set format x '%H.%M'
set format y '%m/%d'
splot 'inputfile.csv' u 3:3:11