首先让我为在 Google 表格中使用 Excel 术语而道歉。我想从工作簿中的单个工作表中获取数据,做一些事情,然后在同一个工作簿中写一个新工作表。例如;
library(googlesheets4)
pot <- read_sheet("https://docs.google.com/spreadsheets/d/1tw0tK0RQf1F4WXA5eo24wDjOR0jrqoRp91SI4x7YnqU/edit#gid=0")
pot.sum<-pot%>%
group_by(Treat) %>%
summarise(Mean = mean(Value))
现在我想将 pot.sum 写入同一工作簿中的新电子表格。我知道函数gs4_create()
和write_sheet()
,但我不知道如何指导新工作表的写入位置。感谢您提供的任何帮助。