We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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)
$ python3 -m http.server
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The suggested way of getting standalong HTML from ipywidgets doesn't appear to work:
The text was updated successfully, but these errors were encountered: