You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is your idea related to a problem? Please describe.
when I call wr.neptune.flatten_nested_df() I get the following warning printed for each record:
/root/.local/lib/python3.10/site-packages/awswrangler/neptune/_neptune.py:624: FutureWarning: DataFrame.applymap has been deprecated. Use DataFrame.map instead.
s = (df.applymap(type) == list).all()
The pandas map API on a data frame was only introduced in pandas 2.1 pandas-dev/pandas#52353
So replacing it would cause backward compatibility. Perhaps we can consider suppressing the warning
Is your idea related to a problem? Please describe.
when I call
wr.neptune.flatten_nested_df()
I get the following warning printed for each record:sample code:
Describe the solution you'd like
update the applymap to map to avoid the warning
The text was updated successfully, but these errors were encountered: