我从我们的 mongoDB 查询了这个
data2 <- table$find(
query = '{"disabled" : true}',
fields = '{"general.name" : true, "_id": true')
View(data)
看起来和我预期的一样,但是当我尝试使用googlesheets4::write_sheet(data = data2, ss = "a google url", sheet = "a name")
它发出这条消息:
Writing to "gsheetname"
Writing to sheet "a name"
Error: Don't know how to make an instance of `CellData` from something of class 'data.frame'.
创建 xls 或 csv 可以正常工作,但 gsheet 不能。来自 mongoDB 以外的其他来源的数据帧可以写入 gsheet。