The suggested way of getting standalong HTML from ipywidgets doesn't appear to work:
import numpy as np
import pandas as pd
from ipysheet import from_dataframe
dates = pd.date_range("20130101", periods=6)
df = pd.DataFrame(
np.random.randn(6, 26),
index=dates,
columns=list(chr(ord("A") + i) for i in range(26)),
)
w = from_dataframe(df)
from ipywidgets.embed import embed_minimal_html
embed_minimal_html("index.html", w)
The suggested way of getting standalong HTML from ipywidgets doesn't appear to work: