1plt.plot([1, 2, 3], label='Inline label')
2plt.legend(loc=1, prop={'size': 16})
3
4
1# figsize is an optional parameter in matplotlib.pyplot library's .figure() function
2# it defaults to = None
3# syntax:
4# figsize=(width, height)
5# - each integer much be a float
6
7import matplotlib.pyplot as plt
8
9figure = plt.figure(figsize = (10,5));