I'm getting an error when I'm running the sqldf command in R: ‘package ‘RSQLite.extfuns’ could not be loaded’
Here's my code:
install.packages("RSQLite")
library("RSQLite")
install.packages("sqldf")
library("sqldf")
Ent_forecast<-sqldf("select day,
year,
date,
sales_offered_calls
from R_input")
The first error (after the install): Error: package ‘RSQLite.extfuns’ could not be loaded
The second error (after using function: sqldf): Error: could not find function "sqldf"
...I think this may have something to do with the RSQLite.extfuns package being removed from the CRAN library:
http://cran.r-project.org/web/packages/RSQLite.extfuns/index.html
Any help would be very much appreciated!
Thanks!