Matplotlib and Pandas 2018-06-11
Matplotlib & Pandas Requires NumPy extension. Provides powerful plotting commands. Matplotlib Official Website https://matplotlib.org Pandas Official website https://pandas.pydata.org
Matplotlib & Pandas Website: https://matplotlib.org https://pandas.pydata.org Getting Matplotlib: https://pypi.org/project/matplotlib/#files Getting Pandas: https://pypi.org/project/pandas/#files Installing Packages https://packaging.python.org/tutorials/installing-packages/
matplotlib.pyplot A collection of command style functions that make matplotlib work like MATLAB. Each pyplot function makes some change to a figure. For instance, creates a figure, creates a plotting area in a figure, plots some lines in a plotting area, decorates the plot with labels, etc.
matplotlib.pyplot import matplotlib.pyplot as plt plt.plot([1,2,3,4]) plt.ylabel('some numbers') plt.show() See link: https://matplotlib.org/users/pyplot_tutorial.html
Matplotlib Try examples from this site: Line chart Histogram Bar chart Pie chart Legend Matplotlib save figure to image Matplotlib update plot Plot time with Matplot Generate heatmap in matplotlib Scatterplot 3d scatterplot Subplot Matrix correlation Try examples from this site: https://pythonspot.com/en/matplotlib
Pandas Python Data Analysis Library pandas is an open source, BSD-licensed library providing high-performance, easy-to-use data structures and data analysis tools for the Python programming language. 10 Minutes to pandas: http://pandas.pydata.org/pandas-docs/stable/10min.html Pandas Basics (in Chinese): https://www.cnblogs.com/kylinlin/p/5226790.html
Hands On Forest Fires Data Set https://archive.ics.uci.edu/ml/datasets/Forest+Fires http://www3.dsi.uminho.pt/pcortez/forestfires/ Dataset: forestfires.csv Explanation of the data: forestfires-names.txt Reference: http://www.cnblogs.com/kylinlin/p/5232602.html