fbdesignpro/sweetviz

report.show_notebook() not showing in any output in Databricks notebook

codesanity123 opened this issue · 3 comments

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.

image

The same code works in Google colab. Can anyone help?

having same issue here. did you manage to solve it?

@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.

@codesanity123 I am currently on break but will be investigating this upon my return and hopefully we can fix this.