I'm trying to write a list of data frames into a single excel sheet. However, I'm having issues with the alignments with the data frames printed on the excel sheet.
While the first few data frame was fine, there are a few which was forced onto a new row which could make it harder to read.
I'm using the write.xlsx function
df = list("df1" = df1, "df2" = df2 ... )
write.xlsx(z = df, file = "list_of_df.xlsx")
Does anyone know the way around this?
Thanks!