and we have graphs for netinstalls

This commit is contained in:
Stephen Smoogen 2016-05-06 20:45:38 +00:00
parent 8ea3bf0342
commit 343b9dfadc
2 changed files with 89 additions and 83 deletions

View file

@ -52,7 +52,7 @@ BEGIN{
netserv=0;
network=0;
netclod=0;
print olddate ",total,editions,atomic,cloud,server,workstation,unk_edt,f20,f21,f22,f23,f24,f25,f26,f27,f28,f29,unk_rel,arm_32,arm_64,ppc_le,ppc_he,s390x,x86_32,x86_64,unk_arc,netinstall,netserv,network,netclod,spin,Xfce,SoaS,LXDE,Security,Robotics,Mate,Scientific,Jam,Design,Electronics,Games,Minimal,Cinnamon,KDE"
print olddate ",02-total,03-editions,04-atomic,05-cloud,06-server,07-workstation,08-unk_edition,09-f20,10-f21,11-f22,12-f23,13-f24,14-f25,15-f26,16-f27,17-f28,18-f29,19-unk_rel,20-arm_32,21-arm_64,22-ppc_le,23-ppc_he,24-s390x,25-x86_32,26-x86_64,27-unk_arc,28-netinstall,29-netserv,30-network,31-netclod,32-spin,33-Xfce,34-SoaS,35-LXDE,36-Security,37-Robotics,38-Mate,39-Scientific,40-Jam,41-Design,42-Electronics,43-Games,44-Minimal,45-Cinnamon,46-KDE"
}
{

View file

@ -6,6 +6,57 @@ set timefmt "%Y-%m-%d"
set datafile separator ","
set term png size 1600,1200
##
set output "/var/www/html/csv-reports/images/getfedora-allpoints.png"
set title "Daily Editions Total Unique IPs"
plot ["2014-12-01":"2016-12-31"] \
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:2 title 'Total downloads' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:3 title 'Editions' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:4 title 'Atomic' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:5 title 'Cloud' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:6 title 'Server' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:7 title 'Workstation' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:8 title 'Unknown Edition' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:9 title 'Fedora 20' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:10 title 'Fedora 21' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:11 title 'Fedora 22' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:12 title 'Fedora 23' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:13 title 'Fedora 24' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:14 title 'Fedora 25' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:15 title 'Fedora 26' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:16 title 'Fedora 27' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:17 title 'Fedora 28' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:18 title 'Fedora 29' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:19 title 'Unknown Release' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:20 title 'Arm 32' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:21 title 'Arm 64' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:22 title 'PPC LE' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:23 title 'PPC HE' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:24 title 's390x' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:25 title 'x86_32' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:26 title 'x86_64' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:27 title 'Unknown' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:28 title 'netinstalls' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:29 title 'net server' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:30 title 'net workstation' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:31 title 'net cloud' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:32 title 'spins' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:33 title 'XFCE spin' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:34 title 'Sugar spin' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:35 title 'LXDE spin' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:36 title 'Security Spin' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:37 title 'Robotics Spin' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:38 title 'MATE Spin' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:39 title 'Scientific Spin' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:40 title 'Jam Spin' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:41 title 'Design Spin' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:42 title 'Electronics Spin' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:43 title 'Games Spin' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:44 title 'Minimal Spin' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:45 title 'Cinnamon Spin' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:46 title 'KDE Spin' with lines lw 4
unset output
##
set output "/var/www/html/csv-reports/images/getfedora-editions.png"
set title "Daily Editions Total Unique IPs"
@ -20,7 +71,7 @@ plot ["2014-12-01":"2016-12-31"] \
unset output
##
set output "/var/www/html/csv-reports/images/getfedora-versions.png"
set output "/var/www/html/csv-reports/images/getfedora-editions-filled.png"
set title "Daily Editions Total Unique IPs"
plot ["2014-12-01":"2016-12-31"] \
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:2 title 'Total downloads' with lines lw 4,\
@ -37,12 +88,17 @@ set output "/var/www/html/csv-reports/images/getfedora-versions-filled.png"
set title "Daily Version Totals"
plot ["2014-12-01":"2016-12-31"] \
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:2 title 'Total number' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($9+$10+$11+$12+$13+$14) title 'Fedora-20' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($10+$11+$12+$13+$14) title 'Fedora-21' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($11+$12+$13+$14) title 'Fedora-22' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($12+$13+$14) title 'Fedora-23' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:(13+$14) title 'Fedora-24' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($14) title 'Unknown' with filledcurves x1
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($9+$10+$11+$12+$13+$14+$15+$16+$17+$18+$19) title 'Fedora-20' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:( $10+$11+$12+$13+$14+$15+$16+$17+$18+$19) title 'Fedora-21' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:( $11+$12+$13+$14+$15+$16+$17+$18+$19) title 'Fedora-22' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:( $12+$13+$14+$15+$16+$17+$18+$19) title 'Fedora-23' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:( $13+$14+$15+$16+$17+$18+$19) title 'Fedora-24' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:( $14+$15+$16+$17+$18+$19) title 'Fedora-25' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:( $15+$16+$17+$18+$19) title 'Fedora-26' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:( $16+$17+$18+$19) title 'Fedora-27' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:( $17+$18+$19) title 'Fedora-28' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:( $18+$19) title 'Fedora-29' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:( $19) title 'Unknown Rel' with filledcurves x1
unset output
##
@ -50,104 +106,54 @@ set output "/var/www/html/csv-reports/images/getfedora-arch.png"
set title "Daily Architectures Totals"
plot ["2014-12-01":"2016-12-31"] \
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:2 title 'Total number' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:15 title 'arm_32' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:16 title 'arm_64' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:17 title 'ppc_le' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:18 title 'ppc_he' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:19 title 's390x' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:20 title 'x86_32' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:21 title 'x86_64' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:22 title 'unknown' with lines lw 4
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:20 title 'Arm 32' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:21 title 'Arm 64' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:22 title 'PPC LE' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:23 title 'PPC HE' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:24 title 's390x' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:25 title 'x86_32' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:26 title 'x86_64' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:27 title 'Unknown' with lines lw 4
unset output
##
set output "/var/www/html/csv-reports/images/getfedora-arch-filled.png"
set output "/var/www/html/csv-reports/images/getfedora-arch-top2-filled.png"
set title "Daily x86 Architectures Filled Totals"
plot ["2014-12-01":"2016-12-31"] \
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:2 title 'Total number' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($20+$21) title 'x86_32' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($21) title 'x86_64' with filledcurves x1
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($25+$26) title 'x86_32' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($26) title 'x86_64' with filledcurves x1
unset output
##
set output "/var/www/html/csv-reports/images/getfedora-arch-less-filled.png"
set title "Daily Other Architectures Totals"
plot ["2014-01-01":"2016-12-31"] \
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($15+$16+$17+$18+$19+$22) title 'arm_32' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($16+$17+$18+$19+$22) title 'arm_64' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($17+$18+$19+$22) title 'ppc_le' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($18+$19+$22) title 'ppc_he' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($19+$22) title 's390x' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($22) title 'unknown' with filledcurves x1
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($20+$21+$22+$23+$24+$25) title 'arm_32' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($21+$22+$23+$24+$25) title 'arm_64' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($22+$23+$24+$25) title 'ppc_le' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($23+$24+$25) title 'ppc_he' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($24+$25) title 's390x' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($25) title 'unknown' with filledcurves x1
unset output
##
set output "/var/www/html/csv-reports/images/getfedora-netinstalls.png"
set title "Daily Netinstalls Total"
plot ["2014-01-01":"2016-12-31"] \
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:23 title 'Total Netinstalls' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:24 title 'Server' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:25 title 'Workstation' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:26 title 'Cloud' with lines lw 4
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:28 title 'Total Netinstalls' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:29 title 'Server' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:30 title 'Workstation' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:31 title 'Cloud' with lines lw 4
unset output
##
set output "/var/www/html/csv-reports/images/getfedora-netinstalls-filled.png"
set title "Daily Netinstalls Total"
plot ["2014-01-01":"2016-12-31"] \
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:23 title 'Total Netinstalls' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($24+$25+$26) title 'Server' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($25+$26) title 'Workstation' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($26) title 'Cloud' with filledcurves x1
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:28 title 'Total Netinstalls' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($29+$30+$31) title 'Server' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($30+$31) title 'Workstation' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($31) title 'Cloud' with filledcurves x1
unset output
##
set output "/var/www/html/csv-reports/images/getfedora-spins.png"
set title "Daily Desktop Spins Total"
plot ["2014-01-01":"2016-12-31"] \
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:27 title 'Total Spins' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:28 title 'XFCE' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:30 title 'LXDE' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:33 title 'Mate' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:40 title 'Cinnamon' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:41 title 'KDE' with lines lw 4, \
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:29 title 'SoaS' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:31 title 'Security' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:32 title 'Robotics' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:34 title 'Scientific' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:35 title 'Jams' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:36 title 'Design' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:37 title 'Electronics' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:38 title 'Games' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:39 title 'Minimal' with lines lw 4
unset output
##
set output "/var/www/html/csv-reports/images/getfedora-spins-filled.png"
set title "Daily Desktop Spins Total"
plot ["2014-01-01":"2016-12-31"] \
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:27 title 'Total Spins' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($28+$30+$33+$40+$41+$29+$31+$32+$34+$35+$36+$37+$38+$39) title 'XFCE' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($30+$33+$40+$41+$29+$31+$32+$34+$35+$36+$37+$38+$39) title 'LXDE' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($33+$40+$41+$29+$31+$32+$34+$35+$36+$37+$38+$39) title 'Mate' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($40+$41+$29+$31+$32+$34+$35+$36+$37+$38+$39) title 'Cinnamon' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($41+$29+$31+$32+$34+$35+$36+$37+$38+$39) title 'KDE' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($29+$31+$32+$34+$35+$36+$37+$38+$39) title 'SoaS' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($31+$32+$34+$35+$36+$37+$38+$39) title 'Security' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($32+$34+$35+$36+$37+$38+$39) title 'Robotics' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($34+$35+$36+$37+$38+$39) title 'Scientific' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($35+$36+$37+$38+$39) title 'Jams' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($36+$37+$38+$39) title 'Design' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($37+$38+$39) title 'Electronics' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($38+$39) title 'Games' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($39) title 'Minimal' with filledcurves x1
unset output
##
set output "/var/www/html/csv-reports/images/getfedora-rough-filled.png"
set title "Daily Labs Stuff Total"
plot ["2014-01-01":"2016-12-31"] \
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:2 title 'Total downloads' with lines lw 4,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($3+27) title 'Editions' with filledcurves x1,\
'/var/www/html/csv-reports/getfedora/getfedoradata-all.csv' using 1:($27) title 'Total Spins' with filledcurves x1
unset output