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
Is it possible to run ipydatagrid in Databricks?
ipydatagrid
When I tried to run a simple example, I get an error: Error displaying widget: Cannot read properties of undefined (reading 'length')
Error displaying widget: Cannot read properties of undefined (reading 'length')
The text was updated successfully, but these errors were encountered:
Thanks for opening an issue, which simple example have you tried?
Looking at the error message, you may have found an actual bug in the ipydatagrid TypeScript code
Sorry, something went wrong.
df = pd.DataFrame( { "A": 1.0, "B": pd.Timestamp("20130102"), "C": pd.Series(1, index=list(range(4)), dtype="float32"), "D": pd.Categorical(["test", "train", "test", "train"]), "E": "foo", } ) datagrid = ipydatagrid.DataGrid(df) datagrid
I ran in to issues on Databricks with 1.3.0+ as well. Rendering any pandas dataframe gives:
Error displaying widget: e.data[i].value is undefined
Up through 1.2.1 worked fine.
1.3.0:
1.2.1
No branches or pull requests
Is it possible to run
ipydatagrid
in Databricks?When I tried to run a simple example, I get an error:
Error displaying widget: Cannot read properties of undefined (reading 'length')
The text was updated successfully, but these errors were encountered: