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
Add to instructors notes that pandas .18.1 (and maybe others) has a bug where
surveys_df['weight'].describe() in lesson 01 returns
RuntimeWarning: Invalid value encountered in percentile
count 32283.000000
mean 42.672428
std 36.631259
min 4.000000
25% NaN
50% NaN
75% NaN
max 280.000000
because of the Nan values in the file. This is fixed in pandas .18.2 pandas-dev/pandas#13476
The text was updated successfully, but these errors were encountered:
Add to instructors notes that pandas .18.1 (and maybe others) has a bug where
surveys_df['weight'].describe() in lesson 01 returns
RuntimeWarning: Invalid value encountered in percentile
count 32283.000000
mean 42.672428
std 36.631259
min 4.000000
25% NaN
50% NaN
75% NaN
max 280.000000
because of the Nan values in the file. This is fixed in pandas .18.2 pandas-dev/pandas#13476
The text was updated successfully, but these errors were encountered: