display Pandas DataFrame in DataBricks as HTML table
def show_pandas_DF(pd_DF): displayHTML(pd_DF.to_html()) show_pandas_DF( DATAFRAME.head(3) )