python - cannot reindex from duplicate axis -
when running following code on dataframe
df[mynms].isnull().sum() / df.shape[0] df[mynms].columns.to_series().groupby(df.dtypes).groups
it throws valueerror: cannot reindex duplicate axis
.
can resolve this?
Comments
Post a Comment