keshlam
0
Q:

plt figsize

plt.figure(figsize=(20,10))
7
    plt.figure(figsize=(20,8))
9
# 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));
1
from matplotlib.pyplot import figure
figure(num=None, figsize=(8, 6), dpi=80, facecolor='w', edgecolor='k')
1

New to Communities?

Join the community