View on GitHub

reading-notes

My learning journal for Code Fellows

Data Visualization

Using Matplotlib

Matplotlib is a powerful data visualization tool, and one of the most widely used in Python.

IPython is an enhanced Python shell with more powerful debugging, inputs and outputs and more.

Pyplot is the interface for matplotlib

Simple Plot

Given a simple sine and cosine plot, matplotlib allows the user to control the figure size and dpi, line width, color and style, axes, axis and grid properties, text and font properties and more of the given visual graph.

Figures

Figures are the windows where the GUI has ‘Figure #’ in the title. The numbering starts at 1 rather than 0 which is conventional in Python.

Subplots

Subplots can be used to display multiple plots in on a multi-axes grid system. You need to specify the number of rows and columns when choosing the way to display your subplots.

Axes

Axes are similar to subplots but they allow placement of plots anywhere in the figure. If you wanted to put a small plot inside of a bigger plot, you would use axes.

Things I want to know more about