【发布时间】:2019-09-05 13:32:29
【问题描述】:
我有这些数据:
2019-08-28,384
2019-08-29,394
2019-08-30,406
2019-08-31,424
2019-09-01,439
2019-09-02,454
2019-09-03,484
还有 gnuplot 脚本:
set title "test"
set terminal png truecolor size 960,720 background rgb "#eff1f0"
set output "/home/tbenedet/Desktop/GNUPLOT\ AIX/test.png"
set grid
set style line 1 \
linecolor rgb '#0060ad' \
linetype 1 linewidth 2 \
pointtype 7 pointsize 1.5
set offsets 0.5,0.5,0,0.5
set datafile separator ","
plot "df_output.txt" using 2:xtic(1) with linespoints linestyle 1
我想画一条这样的趋势线:
但我的数学很差,我不知道如何用 gnuplot 做到这一点……有人给我看吗?
【问题讨论】:
标签: gnuplot linear-regression curve-fitting