从PostgreSQL导入文件到R

前端之家收集整理的这篇文章主要介绍了从PostgreSQL导入文件到R前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我有一个大数据集,我将在R软件中进行一些分析。
虽然我不能正确地将数据导入到R.

我得到这个错误

Error in postgresqlNewConnection(drv,...) : RS-DBI driver: (could not connect User@local on dbname "Intel"

我使用Postgresql打开数据,并以某种方式管理它。如何将Postgresql中的现有数据导入R软件?

drv <- dbDriver("Postgresql")
con <- dbConnect(drv,host='localhost',port='5432',dbname='Swiss',user='postgres',password='123456')

此外,应该安装R中的“RPostgresql”包。

原文链接:https://www.f2er.com/postgresql/192888.html

猜你在找的Postgre SQL相关文章