Hoffman2:Software Tools:brms: Difference between revisions

From Center for Cognitive Neuroscience
Jump to navigation Jump to search
No edit summary
No edit summary
 
Line 5: Line 5:
  module load R/4.1.2
  module load R/4.1.2
  module load gcc/5.3.0
  module load gcc/5.3.0
  export R_LIBS='/u/project/CCN/apps/R_libs/rh7/4.1.2
  export R_LIBS='/u/project/CCN/apps/R_libs/rh7/4.1.2'


Start R
Start R

Latest revision as of 23:27, 26 July 2022

Use R library brms in Hoffman

Official Website

module load R/4.1.2
module load gcc/5.3.0
export R_LIBS='/u/project/CCN/apps/R_libs/rh7/4.1.2'

Start R

R
>require(rstan)
>require(brms)

To run a test of brms (load rstan and brms first as above)

>fit1 <- brm(count ~ zAge + zBase * Trt + (1|patient),
data = epilepsy, family = poisson())