我正在分析来自 Redshift 数据库的数据,使用每个 dplyr 的连接在 R 中工作 - 它有效:
my_db<-src_postgres(host='my-cluster-blahblah.redshift.amazonaws.com', port='5439', dbname='dev',user='me', password='mypw')
mytable <- tbl(my_db, "mytable")
viewstation<-mytable %>%
filter(stationname=="something")
当我尝试将该输出转换为数据框时,因此:
thisdata<-data.frame(viewstation)
我收到错误消息,警告消息:
Only first 100,000 results retrieved. Use n = -1 to retrieve all.
我应该在哪里设置n?