First commit.
David Blume authored 5 years ago
|
1) # Make Chart
2)
3) This is a sample Python 3 script that generates a chart a few different ways.
4)
5) ### Getting the project
6)
7) You can get a copy of this project by clicking on the [ZIP](http://git.dlma.com/make_chart.git/zipball/master)
8) or [TAR](http://git.dlma.com/make_chart.git/tarball/master) buttons near the top right of the GitList web page.
9)
10) You can clone from the origin with:
11)
12) git clone ssh://USERNAME@dlma.com/~/git/make_chart.git
13)
14) ### What Does it Do?
15)
16) You specify one of four renderers, and it analyzes (currently) some hardcoded data..
17)
18) * **none**: Summary only, just print the mean, median, and standard deviation.
19) * **gnuplot**: (default) Print an ASCII art graph.
20) * **matplotlib**: Create a PNG file suitable for static reports and email.
21) * **google**: A Google chart webpage with responsive features.
22)
23) Here's the help text:
24)
|
Minor style tweaks.
David Blume authored 5 years ago
|
25) usage: make_chart.py [-h] [-r {none,gnuplot,matplotlib,google}]
|