Write data into a specific workbook sheet

前端 未结 3 1718
温柔的废话
温柔的废话 2021-01-15 05:38

I have a data frame e.g.

a=1:10 
b=31:40
c=data.frame(a=a,b=b)

and I will need to write this data frame into a specific Excel sheet (\"Shee

3条回答
  •  借酒劲吻你
    2021-01-15 06:06

    Try with xlsx package. You have the function write.xlsx() which allows you to specify a name sheet and you can complete an existing excel.

提交回复
热议问题