I'm trying to connect with a Microsoft Access database to work with it in R using the odbcConnect function
library(RODBC)
mydb <- odbcConnectAccess("database.mdb")
but when I run the R script it comes with an error
Error: could not find function "odbcConnectAccess"
Execution halted
Could the error be related to trying to work with a .mdb file not using Windows? And if it is, is there another way to deal with .mdb files in ubuntu using R?