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
* Try converting the column `plot_id` to floats using `surveys_df.plot_id.astype("float")`. Then, try converting the contents of the `weight` column to an integer type. What error message does Pandas give you? What does this error mean?
248
+
* Try converting the column `plot_id` to floats using `surveys_df.plot_id.astype("float")`.
249
+
Then, try converting the contents of the `weight` column to an integer type.
250
+
What error messages does Pandas give you? What do these errors mean?
249
251
250
252
Pandas cannot convert types from float to int if the column contains NaN values.
0 commit comments