Linking ODK to R

Hi,

The recommended package for linking ODK to R ruODK is not availble on CRAN. Is there an updated version? What package can be used instead?

Thanks.

1 Like

Hi @Saad,

Pre-built binaries of ruODK are available on the rOpenSci r-universe for a CRAN-like installation experience. See https://github.com/ropensci/ruODK#install:

# Enable the rOpenSci universe, e.g. in your .Rprofile
options(repos = c(ropensci = 'https://ropensci.r-universe.dev',
                  CRAN = 'https://cloud.r-project.org'))

install.packages('ruODK')

In addition, you can also install the package from GitHub (see ruODK readme and docs).

2 Likes