Summary
Many records in the variables table have min / max == +/- Inf.
This is because there was a 'not null' constraint on this field. But using +/- Inf seems misleading and can be incorrect.
incorrect when
- a variable must be >=0
- a variable is categorical
Affected Record(s)
| Field |
Value |
| Dataset |
variables |
| Record ID(s) |
>800 records, see below |
| Column(s) |
min, max |
variables |>
dplyr::select(id, name, min, max) |>
dplyr::filter(min == '-Infinity' | max == 'Infinity')`
Summary
Many records in the variables table have min / max == +/- Inf.
This is because there was a 'not null' constraint on this field. But using +/- Inf seems misleading and can be incorrect.
incorrect when
Affected Record(s)