Sqldf is missing where TRUE / FALSE is required
In sqldf_0.4-7.1 I get:
Error in if (.allows_extensions(db)) { :
missing value where TRUE/FALSE needed
Where is the package that fixes the bug? My error is the same as using:
sqldf("select * from warpbreaks limit 6")
I downloaded sqldf v0.4-7.1 from CRAN but didn't help with newer source after 8 hours.
+1
source to share
1 answer
The problem is with this version of sqldf. The patched version should already be on tap, so you will need to update the sqldf package.
Download sqldf_0.4-9.tar.gz file and execute console:
R CMD INSTALL sqldf_0.4-9.tar.gz
+1
source to share