Add a lot of graphs
This commit is contained in:
26938
gnuplot/DATA.TSV
26938
gnuplot/DATA.TSV
File diff suppressed because it is too large
Load Diff
38
gnuplot/T-H.latex.gpi
Normal file
38
gnuplot/T-H.latex.gpi
Normal file
@ -0,0 +1,38 @@
|
||||
# Inspired by http://youinfinitesnake.blogspot.ch/2011/02/attractive-scientific-plots-with.html
|
||||
# and http://www.gnuplotting.org/why-you-should-upgrade-to-gnuplot-4-4-3/
|
||||
|
||||
set terminal epslatex size 5.8,4.1 color colortext 'phv,9' header '\definecolor{t}{rgb}{0.5,0.5,0.5}'
|
||||
set format '\color{t}$%g$'
|
||||
set output 'T-H.tex'
|
||||
|
||||
# Line style for axes
|
||||
set style line 80 lt 0
|
||||
set style line 80 lt rgb '#808080'
|
||||
|
||||
# Line style for grid
|
||||
set style line 81 lt 3 # dashed
|
||||
set style line 81 lt rgb '#808080' lw 0.5 # grey
|
||||
|
||||
set grid back linestyle 81
|
||||
set border 3 back linestyle 80
|
||||
|
||||
set xtics nomirror
|
||||
set ytics nomirror
|
||||
|
||||
set style line 1 linetype 1
|
||||
set style line 2 linetype 1
|
||||
set style line 1 linetype rgb '#A00000' linewidth 2 pointtype 7
|
||||
set style line 2 linetype rgb '#00A000' linewidth 2 pointtype 9
|
||||
|
||||
set size 1,1
|
||||
set origin 0,0
|
||||
|
||||
set xlabel 'Température'
|
||||
set ylabel 'Humidité'
|
||||
|
||||
plot 'DATA-T-H.TSV' using 3:6:1 title 'Hr [\%]' with points linestyle 1, \
|
||||
'DATA-T-H.TSV' using 3:6:1 title 'Hr moyen [\%]' smooth unique with linespoints linestyle 2
|
||||
|
||||
reset
|
||||
|
||||
set output
|
39
gnuplot/T-H.svg.gpi
Normal file
39
gnuplot/T-H.svg.gpi
Normal file
@ -0,0 +1,39 @@
|
||||
# Inspired by http://youinfinitesnake.blogspot.ch/2011/02/attractive-scientific-plots-with.html
|
||||
# and http://www.gnuplotting.org/why-you-should-upgrade-to-gnuplot-4-4-3/
|
||||
|
||||
set terminal svg enhanced mouse size 1920,1440 rounded dashed
|
||||
set output 'T-H.svg'
|
||||
|
||||
# Line style for axes
|
||||
set style line 80 lt 0
|
||||
set style line 80 lt rgb '#808080'
|
||||
|
||||
# Line style for grid
|
||||
set style line 81 lt 3 # dashed
|
||||
set style line 81 lt rgb '#808080' lw 0.5 # grey
|
||||
|
||||
set grid back linestyle 81
|
||||
set border 3 back linestyle 80
|
||||
|
||||
set xtics nomirror
|
||||
set ytics nomirror
|
||||
|
||||
set style line 1 linetype 1
|
||||
set style line 2 linetype 1
|
||||
set style line 1 linetype rgb '#A00000' linewidth 2 pointtype 7
|
||||
set style line 2 linetype rgb '#00A000' linewidth 2 pointtype 9
|
||||
|
||||
set size 1,1
|
||||
set origin 0,0
|
||||
|
||||
set xlabel 'Température'
|
||||
set ylabel 'Humidité'
|
||||
|
||||
plot 'DATA-T-H.TSV' using 3:6:1 title 'Hr [%]' with points linestyle 1, \
|
||||
'DATA-T-H.TSV' using 3:6:1 title 'Hr moyen [%]' smooth unique with linespoints linestyle 2
|
||||
|
||||
reset
|
||||
|
||||
set output
|
||||
|
||||
!gzip -S z T-H.svg
|
115657
gnuplot/data.svg
115657
gnuplot/data.svg
File diff suppressed because it is too large
Load Diff
Before Width: | Height: | Size: 11 MiB |
@ -3,7 +3,7 @@
|
||||
|
||||
set terminal epslatex size 5.8,8.2 color colortext 'phv,9' header '\definecolor{t}{rgb}{0.5,0.5,0.5}'
|
||||
set format '\color{t}$%g$'
|
||||
set output '../latex/data.tex'
|
||||
set output 'data.tex'
|
||||
|
||||
# Line style for axes
|
||||
set style line 80 lt 0
|
||||
@ -33,9 +33,8 @@ set origin 0,0
|
||||
|
||||
set xlabel 'Temps [hhmm]'
|
||||
set xdata time # the x-axis is time
|
||||
set format x '%H%M' # display as time
|
||||
set format x '%H%M' # display as time
|
||||
set timefmt '%Y-%m-%d %H:%M:%S' # but read in as datetime
|
||||
#set xtics 300
|
||||
|
||||
set multiplot
|
||||
|
||||
|
@ -34,7 +34,6 @@ set xlabel 'Temps [hhmm]'
|
||||
set xdata time # the x-axis is time
|
||||
set format x '%H%M' # display as time
|
||||
set timefmt '%Y-%m-%d %H:%M:%S' # but read in as datetime
|
||||
#set xtics 300
|
||||
|
||||
set multiplot
|
||||
|
||||
@ -62,3 +61,5 @@ unset multiplot
|
||||
reset
|
||||
|
||||
set output
|
||||
|
||||
!gzip -S z data.svg
|
||||
|
Reference in New Issue
Block a user