Created
September 5, 2019 13:43
-
-
Save kolommik/e7a534ae39aca9384d2945ddcdcf8f93 to your computer and use it in GitHub Desktop.
display Pandas DataFrame in DataBricks as HTML table
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def show_pandas_DF(pd_DF): | |
displayHTML(pd_DF.to_html()) | |
show_pandas_DF( DATAFRAME.head(3) ) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment