I'm using Pandas, and I would like to use the TQDM progress bar in the notebook.
After loading TQDM:
from tqdm.auto import tqdm
tqdm.pandas()
and applying a function to the Pandas Dataframe:
new_df = df.progress_apply(...)
I get as output, instead of the progress bar:
HBox(children=(FloatProgress(value=0.0, max=21375.0), HTML(value='')))
I already seen this SO answer, but I'm not sure how to do it within a Watson notebook.