|
|
|
|
|
by iamlemec
1241 days ago
|
|
I believe `count` will only give you the number of non-null rows, so the numbers from the first command could differ by column if there were null values. You can also use the `size` command to get the total number of rows, and that will return a `pd.Series` with or without a column specifier. |
|