Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix Pandas output issue in Colab (#75)
Pandas output itself is shown correctly in Colab, but right before the output there's the following issue: ``` /usr/local/lib/python3.7/dist-packages/pandas/io/formats/format.py in to_html(self, buf, encoding, classes, notebook, border) 986 notebook : {True, False}, optional, default False 987 Whether the generated HTML is for IPython Notebook. --> 988 border : int 989 A ``border=border`` attribute is included in the opening 990 ``<table>`` tag. Default ``pd.options.display.html.border``. AttributeError: 'NotebookFormatter' object has no attribute 'get_result' ``` Using the latest `pandas-profiling` lib seems to fix the issue.
- Loading branch information