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
# Fully working hvplot data cleaning tool | |
import panel as pn | |
import pandas as pd | |
import holoviews as hv | |
pn.extension('tabulator', template='material', sizing_mode='stretch_width') | |
import hvplot.pandas # noqa | |
hvplot.extension('bokeh') | |
pd.options.display.float_format = '{:.0f}'.format | |
common_df_pd = common_df.to_pandas() |