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
DataFrame.plot() does not treat float index as numeric.
This is becasue DataFrame.index.is_numeric() returns False when the index holds floats. DataFrame.index.is_numeric() checks on the dtype of the index to know if it holds numeric data. Apparently dtype of a float index is object.
DataFrame.plot() does not treat float index as numeric.
This is becasue
DataFrame.index.is_numeric()
returnsFalse
when the index holds floats.DataFrame.index.is_numeric()
checks on the dtype of the index to know if it holds numeric data. Apparently dtype of a float index isobject
.example from the mailing list
The text was updated successfully, but these errors were encountered: