Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

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

plt.figure followed by plt.plot generate 2 figures in matplotlib python

I am trying to resize the figure when using matplotlib. My code:

%matplotlib notebook

from ipywidgets import interact

@interact(exporter=df.columns.values)
def myplot(exporter):
    plt.close()  # Close a figure window
    plt.cla()    # Clear the current axes
    plt.clf()    # Clear the current figure

    x_ticks  = np.arange(len(df))
    x_labels = [str(date).split("T")[0] if i % 3 == 0 else "" for i, date in enumerate(df.index.values)]

    plt.figure(figsize=(10, 8))
    plt.plot(x_ticks, df[exporter].values)
    plt.title(exporter)
    plt.xticks(rotation=45, ticks=x_ticks, labels=x_labels)

However, I'm getting 2 figures instead of one. Below is the output:

enter image description here

How to fix this issue?

question from:https://stackoverflow.com/questions/65888480/plt-figure-followed-by-plt-plot-generate-2-figures-in-matplotlib-python

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

1 Reply

0 votes
by (71.8m points)
Waitting for answers

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
OGeek|极客中国-欢迎来到极客的世界,一个免费开放的程序员编程交流平台!开放,进步,分享!让技术改变生活,让极客改变未来! Welcome to OGeek Q&A Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

1.4m articles

1.4m replys

5 comments

57.0k users

...