## Standardize a multiple case scdf and compute an hplm
exampleAB_50 %>%
standardize("values", center = TRUE, scale = TRUE) %>%
hplm()
## The more versatile transform function supersedes standardize:
exampleAB_50 %>%
transform(values = (values - mean(all(values))) / sd(all(values))) %>%
hplm()
Run the code above in your browser using DataLab