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
When duplicated columns exists, DataFrame.info() returns broken output:
pd.DataFrame([[1, 1]], columns=['x','x']).info()
<class 'pandas.core.frame.DataFrame'>
Int64Index: 1 entries, 0 to 0
Data columns (total 2 columns):
x 1 non-null x int64
x int64
dtype: object
x 1 non-null x int64
x int64
dtype: object
dtypes: int64(2)
memory usage: 24.0 bytes
When duplicated columns exists, DataFrame.info() returns broken output:
See #11754
The text was updated successfully, but these errors were encountered: