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
The second example specifies no axis and shows the mean for each column. According to the documentation above, the behavior when the axis is not specified should be to aggregate the mean over both axis since version 2.0.0
I didn't check if the same mistake is present in other aggregation functions.
Suggested fix for documentation
Replace df.mean() with df.mean(axis=0) on the example.
The text was updated successfully, but these errors were encountered:
Pandas version checks
main
hereLocation of the documentation
https://pandas.pydata.org/docs/dev/reference/api/pandas.DataFrame.mean.html#pandas.DataFrame.mean
Documentation problem
The second example specifies no axis and shows the mean for each column. According to the documentation above, the behavior when the axis is not specified should be to aggregate the mean over both axis since version 2.0.0
I didn't check if the same mistake is present in other aggregation functions.
Suggested fix for documentation
Replace
df.mean()
withdf.mean(axis=0)
on the example.The text was updated successfully, but these errors were encountered: