Answers for "plt.plot figure size"

15

plt figsize

plt.figure(figsize=(20,10))
Posted by: Guest on March-31-2020
1

change plot size matplotlib

from matplotlib.pyplot import figure
figure(num=None, figsize=(8, 6), dpi=80, facecolor='w', edgecolor='k')
Posted by: Guest on May-31-2020
0

plt.plot figure size

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

fig=plt.figure(figsize=(2,2))

subplot(1,1,1)
plot(x, y, 'r--')
subplot(1,2,2)
plot(y, x, 'g*-');
Posted by: Guest on August-13-2020

Browse Popular Code Answers by Language