Skip to content

Commit 03502b1

Browse files
authored
Merge pull request #53 from posit-dev/feat-missing-val-report-table
feat: add missing values reporting table feature
2 parents 348d7bf + 59f626e commit 03502b1

File tree

4 files changed

+561
-3
lines changed

4 files changed

+561
-3
lines changed

docs/_quarto.yml

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -121,11 +121,13 @@ quartodoc:
121121
- title: Utilities
122122
desc: >
123123
The utilities group contains functions that are helpful for the validation process. We can
124-
load datasets with `load_dataset()`, preview a table with `preview()`, and set global
125-
configuration parameters with `config()`.
124+
load datasets with `load_dataset()`, preview a table with `preview()`, see where there are
125+
missing values in a table with `missing_vals_tbl()`, and set global configuration parameters
126+
with `config()`.
126127
contents:
127128
- name: load_dataset
128129
- name: preview
130+
- name: missing_vals_tbl
129131
- name: get_column_count
130132
- name: get_row_count
131133
- name: config

pointblank/__init__.py

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@
2525
load_dataset,
2626
config,
2727
preview,
28+
missing_vals_tbl,
2829
get_column_count,
2930
get_row_count,
3031
)
@@ -47,6 +48,7 @@
4748
"load_dataset",
4849
"config",
4950
"preview",
51+
"missing_vals_tbl",
5052
"get_column_count",
5153
"get_row_count",
5254
]

0 commit comments

Comments
 (0)