figsize matplotlib code example

Example 1: plt figsize

plt.figure(figsize=(20,10))

Example 2: legend size matplotlib

plt.plot([1, 2, 3], label='Inline label')
plt.legend(loc=1, prop={'size': 16})

Example 3: matplotlib set size

plt.figure(figsize=(20,8))

Example 4: figsize matplotlib

# figsize is an optional parameter in matplotlib.pyplot library's .figure() function
# it defaults to = None
# syntax:
# 	figsize=(width, height)
#		- each integer much be a float

import matplotlib.pyplot as plt

figure = plt.figure(figsize = (10,5));

Example 5: change plot size matplotlib python

plt.figure(figsize=(14,7))

Example 6: fig=plt.figure(figsize=(2,2))

subplot(1,1,1)
plot(x, y, 'r--')
subplot(1,2,2)
plot(y, x, 'g*-');