您可以将转换tibble为jsonusing jsonlite包。使用内置数据集iris的示例:
tibble
json
jsonlite
library(dplyr) library(jsonlite) mydata <- as_tibble(iris) toJSON(mydata)