scale values in one column based on separate column
I’m looking to scale values out of 100% based on the sample. My df contains the col Project that I’d like to group the col n by to normalize those values of n on a scale to 100%. library("dplyr") ex %>% dplyr::group_by(Project) %>% scale(n) -> perc For my provided data, I’d expect the output perc… Read More scale values in one column based on separate column