You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

19 KiB

<html> <head> </head>
In [4]:
import matplotlib.pyplot as plt
In [5]:
plt.figure()
Out[5]:
<Figure size 432x288 with 0 Axes>
<Figure size 432x288 with 0 Axes>
In [6]:
plt.plot([1,2],[3,4])
Out[6]:
[<matplotlib.lines.Line2D at 0x206a7258d08>]
In [7]:
# Create Figure (empty canvas)
fig = plt.figure()

# Add set of axes to figure
axes = fig.add_axes([0, 0, 1, 1])
In [ ]:

</html>