summaryrefslogtreecommitdiff
path: root/objects_over_time.plt
blob: ad7585cb17f5f32929305b94f67df16a5c810c7a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
set title "processor data"
set timefmt "%Y-%m-%dT%H:%M:%SZ";
set xdata time;
set ytics nomirror;
set ylabel "number of telemetry objects within 3h";
set y2tics;
set y2label "number of player/match objects within 3h";

set autoscale;

set datafile separator ", ";

set terminal png noenhanced;
set key autotitle columnhead;
set output outputfile;
plot inputfile using "date":"players_count" with lines axes x1y2, \
     inputfile using "date":"matches_count" with lines axes x1y2, \
     inputfile using "date":"telemetries_count" with lines axes x1y1;