r 使用R在DB中创建表

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了r 使用R在DB中创建表相关的知识,希望对你有一定的参考价值。

library(RPostgreSQL)  # loads the PostgreSQL driver  
drv <- dbDriver("PostgreSQL")  # creates a connection to the postgres database  # note that "con" will be used later in each connection to the database  
con <- dbConnect(drv, dbname = "osd_analysis", host = "localhost", port = 5432)  
dbWriteTable(con, c("osd_analysis", "bgc_graph_c1_metadata"), value=dt,overwrite=TRUE,row.names=FALSE)

以上是关于r 使用R在DB中创建表的主要内容,如果未能解决你的问题,请参考以下文章

如何从 JSON 数组在 DB 中创建表以在 Spring Boot 中创建 REST API

在同一个数据库 DB2 中创建表的副本

在 DB2 for Z/OS 中创建表分区

在 R 中创建具有专业外观的 Powerpoint

在 DB2 中创建表抛出 BOOLEAN data type is not supported 错误。知道如何解决这个问题吗?

带有Access DB的R中的ODBC是不是存在语言问题?