Skip to content
Open
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
3 changes: 3 additions & 0 deletions 01-docker-terraform/docker-sql/05-data-ingestion.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,9 @@ df.dtypes
# Check data shape
df.shape
```
### Note
- When using `nrows=100` to sample the first 100 rows, all columns have consistent data types in this subset, so **the `DtypeWarning` below will NOT appear**.
- To reproduce the type warning shown below, remove the `nrows=100` parameter and read the full dataset.

### Handling Data Types

Expand Down