如何使用;src_sqlite";dplyr在R上的应用

如何使用;src_sqlite";dplyr在R上的应用,r,dplyr,R,Dplyr,以下是Carson Sievert撰写的题为“使用XML2R和pitchRx驯服PITCHf/x数据”的文章中的引文: library(dplyr) my_db <- src_sqlite("GamedayDB.sqlite3", create = TRUE) # Collect and store all PITCHf/x data from 2008 to 2013 scrape(start = "2008-01-01", end = "2014-01-01", suffix = "i

以下是Carson Sievert撰写的题为“使用XML2R和pitchRx驯服PITCHf/x数据”的文章中的引文:

library(dplyr)
my_db <- src_sqlite("GamedayDB.sqlite3", create = TRUE)
# Collect and store all PITCHf/x data from 2008 to 2013
scrape(start = "2008-01-01", end = "2014-01-01",
suffix = "inning/inning_all.xml", connect = my_db$con)
库(dplyr)

my_db你确定你是指
src_sqlite
而不是
src_sql
?我不认为src_sqlite来自dplyr。
environment(src\u sqlite)
返回了什么?首先,我根据日志使用
src\u sqlite
,链接在原始帖子中<代码>环境(src_sqlite)
返回
。我尝试了
src_sql
,但它说
错误:找不到函数sqc_sql
,dplyr包有问题吗?