-
-
Save dewomser/25a145242f4c20e762fa0270b63e447b to your computer and use it in GitHub Desktop.
Gnuplot Corona Worms
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# Corona in Worms | |
# | |
# Requires data files "test.csv" from this directory, | |
set title 'An Corona Erkrankte in Worms' | |
set yrange [1:31] | |
set xrange [0:700] | |
set xlabel 'Anzahl der Erkrankten absolut' | |
set ylabel 'Tage des Monats 1-30(31)' | |
set label "März 2020" at 1,2 | |
set label "April 2020" at 100,2 | |
set label "Oktober 2020" at 350,2 | |
set label "November 2020" at 550,2 | |
set terminal png size 1400,600 enhanced font "Helvetica,20" | |
set output 'output.png' | |
set datafile separator ',' | |
plot "test.csv" using 37:1 with lines |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Beispiel für ein einfaches Gnuplotscript