2017-07-31 11 views
0

これは私のコードです。ボタンをクリックしてグラフをプロットする前に、グラフをプロットするボタンをクリックしてプロットしたグラフを削除したいと思います。新しいグラフをプロットする前に、IPythonウィジェットを使ってjupyterノートブックのプロットをクリアしてください

columns=[i for i in load_weekday['feed_point_number'].unique()] 

selection=widgets.Dropdown(description='Select feed_point_number?') 
selection.options=columns 
display(selection) 

def on_button_clicked(b): 
    sns.set_style("whitegrid") 
    sns.set_context(rc={"figure.figsize":(12,9)}) 
    load_weekday.plot(x='time_code',y=selection.value,color='Blue') 
button=widgets.Button(description="Plot") 
display(button) 

button.on_click(on_button_clicked) 

答えて

0

使用clear_output()

+0

おかげで、あなたのプロット文の前。私は実際に質問を更新するのを忘れてしまった – user8183395

関連する問題