Skip to contents

Extension point to normalize units (e.g., mg/L, uS/cm). Currently returns df unchanged.

Usage

clean_units(df, units_map = NULL)

Arguments

df

Input data frame / tibble.

units_map

Optional mapping of units.

Value

The input df unchanged (placeholder).

See also

Examples

clean_units(data.frame(ph = c(7, 7.2), od = c(6.5, 7.0)))
#>    ph  od
#> 1 7.0 6.5
#> 2 7.2 7.0