Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Error: The dbplyr package is required to communicate with database backends

Tags:

r

dplyr

dbplyr

I am new to R and learning R from sources.

I am trying to use the dplyr package for connecting to the database.

I am trying out the following tutorial, and getting this error

https://github.com/ujjwalkarn/DataScienceR/blob/master/Intro%20to%20dplyr/7-databases.R

I am using RStudio for running the tutorials on Linux Platform.

> hflights_db <- src_sqlite("hflights.sqlite3", create = TRUE)
Error: The dbplyr package is required to communicate with database backends.
like image 575
Vishal Prajapati Avatar asked Nov 07 '22 17:11

Vishal Prajapati


1 Answers

Easy fix: install the dbplyr package.

like image 146
Aren Cambre Avatar answered Nov 14 '22 21:11

Aren Cambre