I have data that is formatted like so. I would like to calculate the percent of enrollment associated with each racial group.
building <- c(1, 2)
total_enrollment <- c(100, 200)
black_count <- c(32, 69)
hispanic_count <- c(10, 19)
white_count <- c(44, 86)
asian_count <- c(5, 12)
nativeamerican_count <- c(4, 7)
multiracial_count <- c(5, 7)
school_racial_breakdown <- data.frame(building, total_enrollment, black_count, hispanic_count, white_count,
asian_count, nativeamerican_count, multiracial_count)
I wrote the following code:
library(writexl)
cols <- c('black_count', 'hispanic_count', 'white_count', 'asian_count', 'nativeamerican_count', 'multiracial_count')
school_racial_breakdown[,paste0(cols, 'Percent')] <- lapply(cols, function(x) school_racial_breakdown[,x]/school_racial_breakdown[,2])
write_xlsx(school_racial_breakdown, 'Demographic File.xlsx')
However, when I write to the excel file, the columns containing the percentages are blank. Any idea why this is happening and how I can fix it?
Thank you!