File:Swineflu uk rate.png
Summary
| Description |
English: Weekly consultation rate for influenza-like illness in the UK |
| Date | |
| Source | Own work by uploader, numerical data from documents at HPA which sourced data from QSurveillanceCategory:PNG created with Matplotlib#Swineflu%20uk%20rate.png |
| Author | Dave Farrance |
Source Code
This plot was created with the following Python/Matplotlib script:
#!/usr/bin/env python
from pylab import *
rc('axes',lw=2.0)
ili=[3.1, 8.4, 9.8, 8.6, 6.5, 4.2, 4.4, 5.8, 8.9, 17.4,
30.4, 86.8, 221.4, 225.7, 72.2, 48.3, 30.8, 19.3, 14.4, 10.9,
14.5, 17.3, 25.0, 29.6, 32, 37.4]
plot(range(17,17+len(ili)), ili, 'rD-', lw=4.0)
xticks( array(range(0,7))*4.4+17.7,
['May','Jun','Jul','Aug','Sep','Oct','Nov'],size=18,weight='bold')
yticks(size=18,weight='bold')
ylabel('Weekly ILI rate (per 100,000)', size=18, weight='bold')
grid()
savefig('fig1.png')
Licensing
I, the copyright holder of this work, hereby publish it under the following licenses:
This file is licensed under the Creative Commons Attribution-Share Alike 3.0 Unported license.
- You are free:
- to share – to copy, distribute and transmit the work
- to remix – to adapt the work
- Under the following conditions:
- attribution – You must give appropriate credit, provide a link to the license, and indicate if changes were made. You may do so in any reasonable manner, but not in any way that suggests the licensor endorses you or your use.
- share alike – If you remix, transform, or build upon the material, you must distribute your contributions under the same or compatible license as the original.
| Permission is granted to copy, distribute and/or modify this document under the terms of the GNU Free Documentation License, Version 1.2 or any later version published by the Free Software Foundation; with no Invariant Sections, no Front-Cover Texts, and no Back-Cover Texts. A copy of the license is included in the section entitled GNU Free Documentation License. |
You may select the license of your choice.