Add stats gnuplot source.
This commit is contained in:
parent
e472292232
commit
65b799ad0e
1 changed files with 20 additions and 0 deletions
20
members-base-stats.gp
Normal file
20
members-base-stats.gp
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
set terminal pngcairo size 800,600
|
||||||
|
set title "Members stats"
|
||||||
|
set output 'members-base-stats.png'
|
||||||
|
|
||||||
|
src='members-base-stats.data'
|
||||||
|
|
||||||
|
set timefmt "%Y-%m"
|
||||||
|
set xdata time
|
||||||
|
set format x "%Y-%m"
|
||||||
|
|
||||||
|
set xlabel "Month"
|
||||||
|
set ylabel "Members"
|
||||||
|
|
||||||
|
set grid
|
||||||
|
|
||||||
|
plot[][0:] \
|
||||||
|
src u 1:3 w l t 'active', \
|
||||||
|
src u 1:4 w l t 'suspended', \
|
||||||
|
src u 1:5 w l t 'students', \
|
||||||
|
src u 1:6 w l t 'destroyed'
|
Loading…
Add table
Add a link
Reference in a new issue