gpt4 book ai didi

r - 如何将数据从 PostgreSQL 数据库导入到 R?

转载 作者:行者123 更新时间:2023-11-29 12:02:01 27 4
gpt4 key购买 nike

我正在考虑使用 RPostgresQL 包将数据从数据库直接导入到 r 中。到目前为止,我曾经在 Postico(一种 PostgreSQL 客户端)软件中编写查询并导出为 csv,然后将 csv 文件导入 R。
这是我到目前为止所写的内容,不知道接下来如何进行。

library('RPostgreSQL')
pg=dbDriver("PostgreSQL")
con = dbConnect(pg, user="msahil515", password="",
host="localhost", port=5432, dbname="msahil515")

在此之后如何将数据库中的表加载到 R 中,或者如何在 R 中编写查询以仅从数据库中提取必要的数据?

最佳答案

这是对您问题的直接回答。这绝对可以扩展

library('RPostgreSQL')

#create connection object
con <- dbConnect(drv =PostgreSQL(),
user="msahil515",
password="",
host="localhost",
port=5432,
dbname="msahil515")

dbListTables(con) #list all the tables

#query the database and store the data in datafame
first_results <- dbGetQuery(con, "SELECT * from FOO limit 10;")

dbDisconnect(con) #disconnect from database

关于r - 如何将数据从 PostgreSQL 数据库导入到 R?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/53177653/

27 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com