diff --git a/episodes/03-transform.md b/episodes/03-transform.md index 85d07584..679d5abd 100644 --- a/episodes/03-transform.md +++ b/episodes/03-transform.md @@ -198,7 +198,7 @@ polygon_results['ra'][0] ``` ```output -142.48301935991023 +np.float64(142.48301935991023) ``` Or you can select a row and then an element from the row. @@ -208,7 +208,7 @@ polygon_results[0]['ra'] ``` ```output -142.48301935991023 +np.float64(142.48301935991023) ``` You get the same result either way.