inbo / inbodb

Connect to and retrieve data from databases on the INBO server
https://inbo.github.io/inbodb/
GNU General Public License v3.0
0 stars 0 forks source link
database package r

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")