I'd like to add a progress bar to my calculation in Jupyter notebook. I'm using tqdm
to do that. Here is the code I have
from tqdm import tqdm
tqdm.pandas()
df.progress_apply(lambda c: ...)
but it gives me the following error message
if name in self._info_axis:
2743 return self[name]
2744 return object.__getattribute__(self, name)
2745
2746 def __setattr__(self, name, value):
AttributeError: 'DataFrame' object has no attribute '_is_builtin_func'
What's the problem?