I am using openxlsx package to export data frames from R to excel.
How can I export several dataframes:
a <- data.frame("y"=c(2009,2010,2011,2012),"b"=c(3,4,5,6))
b <- data.frame("y"=c(2009,2010,2011,2012),"b"=c(12,2,7,8))
c <- data.frame("y"=c(2009,2010,2011,2012),"b"=c(5,9,1,6))
on the same excel sheet, each one separated from the previous one by an empty row, and add a column names of each one?
