Skip to content

Lifebrain/lifebrain.r-universe.dev

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 

Repository files navigation

Lifebrain R-universe

:name status badge :registry status badge :total status badge

All packages developed, at least partly, as part of the Lifebrain EU consortium are added to this universe. The only exepctions are the brain parcellations for different atlases for the ggseg and ggseg3d packages, which are numerous and collected in their own universe for easier access.

Accessing the packages in this universe through R, is a matter of adding the universe to the repositories the R installation function searches when installing a package.

# Enable repository from lifebrain
options(repos = c(
  lifebrain = 'https://lifebrain.r-universe.dev',
  CRAN = 'https://cloud.r-project.org'))
  
# Download and install metagam in R
install.packages('metagam')

# Browse the metagam manual pages
help(package = 'metagam')

The ggseg R-universe

:name status badge :registry status badge :total status badge

# Enable repository from ggseg
options(repos = c(
  ggseg = 'https://ggseg.r-universe.dev',
  CRAN = 'https://cloud.r-project.org'))
  
# Download and install metagam in R
install.packages('ggseg')

# Browse the metagam manual pages
help(package = 'ggseg')

Enable both universes

# Enable repository from ggseg
options(repos = c(
  ggseg = 'https://ggseg.r-universe.dev',
  lifebrain = 'https://lifebrain.r-universe.dev',
  CRAN = 'https://cloud.r-project.org'
))
  
# Download and install metagam in R
install.packages('ggseg')

# Browse the metagam manual pages
help(package = 'ggseg')

Funding

EU Horizon 2020 Grant: Healthy minds 0-100 years: Optimising the use of European brain imaging cohorts (Lifebrain).

Grant agreement number: 732592.

Call: Societal challenges: Health, demographic change and well-being

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published