在R語言中,可以使用以下方法將表導出為不同的文件格式:
write.csv(dataframe, "file.csv")
openxlsx
庫):library(openxlsx)
write.xlsx(dataframe, "file.xlsx")
write.table(dataframe, "file.txt")
jsonlite
庫):library(jsonlite)
write_json(dataframe, "file.json")
RSQLite
庫):library(RSQLite)
con <- dbConnect(SQLite(), dbname = "file.sqlite")
dbWriteTable(con, "tablename", dataframe)
dbDisconnect(con)
這些方法可以根據需要選擇適合的導出格式,并將數據框(dataframe)替換為要導出的表對象。