Skip to content

GroupBy null count

Source code

Description

Create a new DataFrame that shows the null counts per column.

Usage

<GroupBy>$null_count()

Value

DataFrame

Examples

library("polars")

x = mtcars
x[1:10, 3:5] = NA
pl$DataFrame(x)$group_by("cyl")$null_count()
#> shape: (3, 11)
#> ┌─────┬─────┬──────┬─────┬───┬─────┬─────┬──────┬──────┐
#> │ cyl ┆ mpg ┆ disp ┆ hp  ┆ … ┆ vs  ┆ am  ┆ gear ┆ carb │
#> │ --- ┆ --- ┆ ---  ┆ --- ┆   ┆ --- ┆ --- ┆ ---  ┆ ---  │
#> │ f64 ┆ u32 ┆ u32  ┆ u32 ┆   ┆ u32 ┆ u32 ┆ u32  ┆ u32  │
#> ╞═════╪═════╪══════╪═════╪═══╪═════╪═════╪══════╪══════╡
#> │ 8.0 ┆ 0   ┆ 2    ┆ 2   ┆ … ┆ 0   ┆ 0   ┆ 0    ┆ 0    │
#> │ 4.0 ┆ 0   ┆ 3    ┆ 3   ┆ … ┆ 0   ┆ 0   ┆ 0    ┆ 0    │
#> │ 6.0 ┆ 0   ┆ 5    ┆ 5   ┆ … ┆ 0   ┆ 0   ┆ 0    ┆ 0    │
#> └─────┴─────┴──────┴─────┴───┴─────┴─────┴──────┴──────┘