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