Answers for "change scale of plot matplotlib"

3

change plot size matplotlib python

plt.figure(figsize=(14,7))
Posted by: Guest on June-21-2020
0

adjust size of plot

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

Code answers related to "change scale of plot matplotlib"

Python Answers by Framework

Browse Popular Code Answers by Language