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
It would be very convenient to be able to create an ipywidget from a pandas dataframe and at the same time pass the display options (width and height, and perhaps others)
It would be very convenient to be able to create an ipywidget from a pandas dataframe and at the same time pass the display options (width and height, and perhaps others)
in the documentation for:
https://ipysheet.readthedocs.io/en/latest/_modules/ipysheet/pandas_loader.html
the method to build the ipysheet gets a pandas dataframe, an idea might be:
def from_dataframe(dataframe, height=['auto'],width=['auto']):
if the coder add height list or width list they would apply to the ipysheet
error returned if (pseudocode)
len(width) != len(pandas.columns) or len(height) != len(pandas.rows)
The text was updated successfully, but these errors were encountered: