jupyterlab_voyager
jupyterlab_voyager copied to clipboard
Launch from pandas dataframe: website says possible, but can't find?
The Voyager docs current seem to suggest you can launch voyager from a pandas
dataframe:
But I can't find any guidance on how. Are the docs incorrect, or is there a hidden feature?
@nickeubank this currently is a feature we're looking to add support for, but there's no timeline for when it would be released
@nickeubank
Played around with this a bit...it seems this is possible currently with the functionality, however, you must enable pandas to support exporting the required data needed to jupyterlab.
Enable pandas using: pd.options.display.html.table_schema = True
It is set to False
by default, and I'm not sure if the plan is to have it enabled out of the box from pandas side.
@saulshanabrook do you know any way from jupyter extension side to have this enabled by default? seems like it could only be accomplished if pandas enables it. Essentially, by enabling the pd.options.display.html.table_schema = True
pandas will provide a JSON schema representation of the pandas dataframe application/vnd.dataresource+json
to the data
object which can be utilized by the extension