In the Week 1 Programming Assignment, the autograder will only accept:
df_train_unskewed.std(ddof=1)
Despite the default value for ddof
being 1 in Dataframe.std()
, and despite the fact that np.std(df_train_unskewed, ddof=1)
provides the correct solution in the tests and is directly referenced in cell above.