Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
441 views
in Technique[技术] by (71.8m points)

python - Setting of size of the figure

How to set the desired size of a figure, please?

import matplotlib.pyplot as plt

fig, ax = plt.subplots()
plt.rcParams["figure.figsize"] = [10, 10]

x = [1, 2, 3]
y = x
plt.plot(x, y, zorder = -1, c = 'grey')


plt.savefig('b.pdf') 

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
等待大神答复

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...