I want to export a dataset similar to the one below, into an excel file with colouring the rows , and changing the colnames+rownames format to bold.
data("HairEyeColor")
mat<-table(HairEyeColor$Hair,HairEyeColor$Eye)
class(mat)
df<-as.data.frame(cbind(mat[,1],mat[,2],mat[,3],mat[,4]))
colnames(df)<-colnames(mat)
write.xlsx(df,"df.xlsx",col.names = TRUE,
row.names = TRUE)
like this one :) ( I used those colours for the expl : #0070C0 #8DB4E2 #DAEEF3)
Try with
openxlsx
This approach may seem a bit verbose, but you are building up the spreadsheet code line by code line, much in the same way you would build up the spreadsheet click by click.
openxlsx's one liner default for :
write.xlsx(mtcars, "openxlsx_table_default.xlsx", asTable = TRUE)
gets you part of the way there.Created on 2021-09-19 by the reprex package (v2.0.0)