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 1: Line 1:
Use R library brms in Hoffman
Use R library brms in Hoffman
[http://https://mc-stan.org/users/interfaces/brms Official Website]


  module load R/4.1.2
  module load R/4.1.2

Revision as of 23:25, 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())