Hi All,

I am making heavy going of what should be quite concise code.

I monitor messages (about 30 sorts) coming from several (3 or 4) stations.
I make a count of the messages per station per day, going back 30 days (0,
-1, -2 . .), like this:

Message  Station  Day  Count
A               A          0      5
A               A          -1     2
A               B          0     13
A               B          -1     3
A               C          0      2
A               C          -1     2
B               A          0      1
B               A          -1    21
B               B          0     18
B               B          -1    34
B               C          0       7
B               C          -1    38
C               A  etc . .

To make it quick and easy for the operating staff to review the site
status, I want to make about 30 plots (in a single column on the canvas),
each with the X axis going from -30 to 0 days, Y axis of Count and 3 or 4
lines showing the message count for each station.

I'm having trouble finding how to subplot the graph page and print multiple
lines in each sub-plot.

There is also the need to fill in missing values to not misrepresent having
zero messages for a message/station/day, consequently I was trying to run
the data via a pivot_table(fill_value=0).

A clue or reference would be greatly appreciated,

Regards,

Kevin.
_______________________________________________
melbourne-pug mailing list
melbourne-pug@python.org
https://mail.python.org/mailman/listinfo/melbourne-pug

Reply via email to