Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions episodes/03-transform.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -208,7 +208,7 @@ polygon_results[0]['ra']
```

```output
142.48301935991023
np.float64(142.48301935991023)
```

You get the same result either way.
Expand Down