0

我有的:

第一列中带有时间戳的 csv 数据,之后我想有选择地绘制列。每个数据点大约相隔十分钟。数据为 24 小时。其他一切都设置得很好,下面的例子

我想要的是:

能够映射在 x 轴(xrange?)上格式化的时间数据。像xtics每个n小时一样,以给定的格式(如"%T, %A")。我想绘制的每列的最佳配置(考虑多图)。

数据:

1545389400,39,0,0,1,664,2493,31.7
1545390000,37,0,0,1,736,3093,32.5
1545391200,33,0,0,1,664,4293,32.6
1545392400,28,0,0,1,704,5493,31.3
1545393000,26,0,0,0,649,6093,30.8
1545393600,24,0,0,0,632,6693,30.5

代码:

set title "Battery Log"
set datafile separator ','
set key center bottom outside
set border lw 0.5 lc '#959595'
set terminal svg dynamic rounded mouse lw 1 background '#272822'
set grid ytics
set ytics nomirror in
set yrange [0:100]
set xtics nomirror
set xtics rotate
set xdata time
set timefmt "%s"
set format x "%T, %A"
plot 'stats.csv' \
    u 0:2 w l lc '#f92783' t columnheader, '' \
    u 0:8 w l lc '#a6e22a' t columnheader

截屏

4

1 回答 1

0

那这个呢?

### set time xtics

N = 3  # every n-th hour

set samples 100
set xdata time 
set format x "%a, %H:%M"
set xtics rotate
set xtics N*3600

plot '+' u ($0*1200):(3*sin(x)+rand(0)) w lp pt 7 not
### end of code

它应该给出这样的东西,每 3 小时打勾。N根据要绘制的列进行设置。

在此处输入图像描述

于 2018-12-21T17:10:13.967 回答