Answers for "matplotlib width of plot"

0

plt.plot figure size

import matplotlib.pyplot as plt
plt.rcParams["figure.figsize"] = (20,3)
Posted by: Guest on July-22-2021
0

pyplot width

from matplotlib.pyplot import figure

figure(figsize=(8, 6), dpi=80) #in figsize
Posted by: Guest on August-03-2021

Python Answers by Framework

Browse Popular Code Answers by Language