Matplotlib¶
Installation¶
Best to create a virtual environment
$ python -m venv ~/env-for-my-work
$ . ~/env-for-my-work/bin/activate
(env-for-my-work) $
Install via Python Package Index
(env-for-my-work) $ python -m pip install matplotlib
Basic Usage¶
Axis Ranges¶
Axis ranges are specified in the form [xmin, xmax, ymin, ymax]
, like so,