Gnuplot只从文件中绘制一条小行

时间:2015-01-15 11:04:54

标签: plot gnuplot

我搜索了一段时间,但我没有找到解决问题的完美解决方案。 所以我来这里问你:

我收到了一个包含一些度量值,日期和时间的文件。 所以我想为gnuplot创建一个自动创建绘图的绘图文件。

这是必须绘制的文件示例:

Date | Time | Temp1 | Temp 2 | Humidit
    14.01.2015|20:08:32|23.0|22.12|37.0
    14.01.2015|20:08:58|23.0|22.12|37.0
    14.01.2015|20:09:25|23.0|22.12|36.0
    14.01.2015|20:09:51|23.0|22.12|37.0
    14.01.2015|20:10:17|23.0|22.12|37.0
    14.01.2015|20:10:43|23.0|22.12|36.0
    14.01.2015|20:11:09|23.0|22.12|36.0

所以你看到每个措施之间的时间非常短。

这是我的gnuplot文件:

set title "Title"
set output "Diagram.png"
set terminal png size 900,600
set ylabel "Temperature in °C"
set y2label "Humidity in %"
set xlabel "Days"
set autoscale xy
set grid
set xtics
set ytics
set y2tics 25
set y2range [0:100]
set grid
set datafile separator "|"

plot  "test.txt" using 2:3 with lines title 'Temperature 1', \
      "test.txt" using 2:4 with lines title 'Temperature 2', \
      "test.txt" using 2:5 with lines title 'Humidity'

结果是Humidity的一条小垂直线。没有其他的。 我没有为我找到合适的解决方案。

有没有人有想法,我必须在我的情节文件中改变什么?

祝你好运 儒略

0 个答案:

没有答案