简体   繁体   中英

How to connect Sqlite database with R Studio?

I'm pretty new to working with sqlite databases in R.

There is an error while installing SQLite

install.packages("RSQLite")

and cannot open URL ' http://www.stats.ox.ac.uk/pub/RWin/src/contrib/PACKAGES.rds ': HTTP status was '404 Not Found'

Error in library(SQLite) : there is no package called 'SQLite'

The "cannot open URL" message by R is misleading and seems completely harmless. However, the package name in the library() call must always match the name of the package you are installing:

install.packages("somepackage")
library(somepackage)
# or
library("somepackage")

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM