Answers for "set figsize"

10

matplotlib set size

plt.figure(figsize=(20,8))
Posted by: Guest on April-02-2020
1

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));
Posted by: Guest on June-18-2020

Python Answers by Framework

Browse Popular Code Answers by Language