Difference between revisions of "OPS435 Python Assignment 2 B"
(Created page with "Category:OPS435-PythonCategory:rchan = Overview = "A picture is worth a thousand words.". A computer usage chart is believed to be more useful than the mere usage data...") |
|||
Line 1: | Line 1: | ||
[[Category:OPS435-Python]][[Category:rchan]] | [[Category:OPS435-Python]][[Category:rchan]] | ||
= Overview = | = Overview = | ||
− | "A picture is worth a thousand words.". A computer usage chart is believed to be more useful than the mere usage data as you might have been able to produce. The scripting task for this assignment is to present the usage data produced by the usage_report python script | + | "A picture is worth a thousand words.". A computer usage chart is believed to be more useful than the mere usage data as you might have been able to produce with the python script for your previous assignments. The scripting task for this assignment is to present the usage data produced by the usage_report python script in a graphical chart form. |
− | There are to modules you can use to achieve | + | There are to modules you can use to make such a task easy to achieve: |
− | # openpyxl - | + | # [https://openpyxl.readthedocs.io/en/stable/ openpyxl] - A Python library to read/write Excel 2010 xlsx/xlsm files |
− | # [https://plot.ly/matplotlib/bar-charts/ matplotlib] | + | # [https://plot.ly/matplotlib/bar-charts/ matplotlib] - a Python 2D plotting library |
Revision as of 14:40, 27 March 2018
Overview
"A picture is worth a thousand words.". A computer usage chart is believed to be more useful than the mere usage data as you might have been able to produce with the python script for your previous assignments. The scripting task for this assignment is to present the usage data produced by the usage_report python script in a graphical chart form.
There are to modules you can use to make such a task easy to achieve:
- openpyxl - A Python library to read/write Excel 2010 xlsx/xlsm files
- matplotlib - a Python 2D plotting library