I'm thinking of importing data from database directly into r using RPostgresQL package. So far, I used to write queries in Postico (a PostgreSQL client) software and export as csv and then import the csv file into R.
This is what I've written so far and no clue how to proceed next.
library('RPostgreSQL')
pg=dbDriver("PostgreSQL")
con = dbConnect(pg, user="msahil515", password="",
host="localhost", port=5432, dbname="msahil515")
How do I load tables from the database into R after this or how to write queries in R to extract only necessary data from database?
?dbSendQuery/?dbGetQueryI mean, you have to read R manual pages at some point, right?dbWriteTable(con,"some_table_name",table_name,row.names=F)but I get an error that the objecttable_namenot found.dbWriteTable()when your question says you want to load tables and extract data?dbGetQuery()worked for me. Thanks!