Skip to content
/ inbodb Public

Connect to and retrieve data from databases on the INBO server

License

Notifications You must be signed in to change notification settings

inbo/inbodb

Repository files navigation

Project Status: Active – The project has reached a stable, usable state and is being actively developed. Lifecycle:stable r-universe name r-universe package

inbodb A hexagon with the word inbodb

Connect to and retrieve data from databases on the INBO server

Installation

To install inbodb from the INBO universe, start a new R session and run this code (before loading any packages):

# Enable the INBO universe (not needed for INBO employees, as this is the default setting)
options(
  repos = c(
    inbo = "https://inbo.r-universe.dev", CRAN = "https://cloud.r-project.org"
  )
)
# Install the packages
install.packages("inbodb")

To install inbodb from GitHub, start a new R session and run this code (before loading any packages):

#install.packages("remotes")
remotes::install_github("inbo/inbodb")