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
@danilonakagomi I did a workaround. Wrapped this command inside the displayHTML() function of databricks and it did work at first. But somehow, it is showing the same thing again!
You can try to see if it works for you.
This is the code I am trying to generate a report on iris dataset in Databricks notebook.
`
url = "https://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data"
iris = pd.read_csv(url, header=None)
iris.columns = ['sepal_length', 'sepal_width', 'petal_length', 'petal_width', 'class']
my_report = sv.analyze(iris)
my_report.show_notebook()`
This is resulting in no output. See screenshot.
The same code works in Google colab. Can anyone help?
The text was updated successfully, but these errors were encountered: