You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I want to display the observe function result in widgets.Output() instead of current frame.
So I tried two ways.
1.
data_output = widgets.Output()
def show_dataframe(change):
with data_output:
clear_output()
display(data_frame.iloc[change['new']][:10])
js2py_memory.observe(show_dataframe, names=["data"])
I want to display the observe function result in widgets.Output() instead of current frame.
So I tried two ways.
1.
data_output = widgets.Output()
def show_dataframe(change):
with data_output:
clear_output()
display(data_frame.iloc[change['new']][:10])
js2py_memory.observe(show_dataframe, names=["data"])
data_output = widgets.Output()
def show_dataframe(change):
clear_output()
display(data_frame.iloc[change['new']][:10])
with data_output:
js2py_memory.observe(show_dataframe, names=["data"])
Both two ways cannot change the display location of observe.
Is there any ways that I can display the result in output?
The text was updated successfully, but these errors were encountered: