Weight-cli/Fonctionnel.txt

21 lines
649 B
Plaintext

#set term dumb 50 20
#terminl gnuplot dumb : http://www.bersch.net/gnuplot-doc/complete-list-of-terminals.html#commands-set-terminal-dumb
set term dumb ansi 256 #nofeed
set autoscale
set title 'Courbe de poids'
set timefmt "%Y-%m-%d %H:%M:%S"
set xdata time
#set xmtics
set xlabel "Mois"
#set xtics format "%Y-%d-%m"
set xtics format "%m"
set x2data time
set x2label "Années"
set x2tics format "%Y"
set xtics nomirror
set xrange [*:*]
set datafile separator '|'
f(x) = 86.41099999999999
plot '/home/guyotv/Documents/Echange/weight-cli/data_perso.csv' using 3:1 w dots title '', f(x) lc 'red' w dots title 'bmi max'
#pause -1 'En attente de RETURN'