Title: Matplotlib, A Simple Example
Slug: matplotlib_simple_example
Summary: Matplotlib, A Simple Example
Date: 2016-05-01 12:00
Category: Python
Tags: Data Visualization
Authors: Chris Albon
In [1]:
%matplotlib inline
In [2]:
import matplotlib.pyplot as pyplot
In [3]:
pyplot.plot([1.6, 2.7])
Out[3]: