Skip to content

Commit

Permalink
adding bool to table in ep 4
Browse files Browse the repository at this point in the history
  • Loading branch information
josenino95 authored Jul 15, 2024
1 parent 51c845b commit d93f222
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion episodes/04-data-types-and-format.md
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,8 @@ is in the table below:
| --------------------- | ------------------------------------- | -------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| object | string | The most general dtype. Will be assigned to your column if column has mixed types (numbers and strings). |
| int64 | int | Numeric characters. 64 refers to the memory allocated to hold this character. |
| float64 | float | Numeric characters with decimals. If a column contains numbers and NaNs (see below), pandas will default to float64, in case your missing value has a decimal. |
| float64 | float | Numeric characters with decimals. If a column contains numbers and NaNs (see below), pandas will default to float64, in case your missing value has a decimal. |
| bool | bool | True/False values |
| datetime64, timedelta[ns] | N/A (but see the [datetime] module in Python's standard library) | Values meant to hold time data. Look into these for time series experiments. |

## Checking the format of our data
Expand Down

0 comments on commit d93f222

Please sign in to comment.