
Creates a dataframe with distinct parameters and units combinations
get_unique_units_df.Rd
Creates a dataframe with distinct parameters and units combinations
Examples
df <- data.frame(
PARAM = c(
"ALB","ALT","AST","CR","TBIL",
"ALB","CR","TBIL","ALT","AST"),
UNIT = c(
"g/L","U/L","U/L","umol/L","umol/L",
"U/L","μmol/L","μmol/L","IU/L","IU/L")
)
unique_df <- get_unique_units_df(df$PARAM, df$UNIT)