Skip to content

Commit

Permalink
Merge pull request #144 from vinegar-tom/patch-1
Browse files Browse the repository at this point in the history
Fix typos in libraries.md
  • Loading branch information
chennesy authored Nov 5, 2024
2 parents 1290217 + 3381737 commit b4a5190
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions episodes/libraries.md
Original file line number Diff line number Diff line change
Expand Up @@ -275,13 +275,14 @@ dtypes: float64(1), int64(13), object(3)
memory usage: 10.8+ KB
```

The `info()` method tells us
- we have a RangeIndex of 83, which means we have 83 rows.
- there are 18 columns, with datatypes of
The `info()` method tells us:

- we have a RangeIndex of 80, which means we have 80 rows.
- there are 17 columns, with datatypes of
- objects (3 columns)
- 64-bit floating point number (1 column)
- 64-bit integers (14 columns).
- the dataframe uses 11.8 kilobytes of memory.
- 64-bit integers (13 columns).
- the dataframe uses 10.8 kilobytes of memory.

## The `DataFrame.columns` variable stores info about the dataframe's columns.

Expand Down

0 comments on commit b4a5190

Please sign in to comment.