Here is some data.
a<-rnorm(1000, 1,1)
b<-rep(letters[1:10], each = 100)
d<-rep(c("x","y","z","q"),250)
abd<-cbind.data.frame(a,b,d)
I would like to split this data frame into list of data frames based on a factor (b in this case) and than write this list of data frame into excel in a way that each factor "b" will be placed on a new sheet and factor "d" will be ordered in a specified way (e.g. first comes x, than y, than z, than q). I first tried to split by factor:
abdlist<-split(abd, abd$b)
abdlist[1]
This looks fine for now, I would like to specify the order of factor "d" when I am writing the list to excel.
library(dplyr)
library(writexl)
abdlist %>%:write_xlsx(path = "path.xlsx")