Skip to content

Latest commit

 

History

History
34 lines (27 loc) · 710 Bytes

File metadata and controls

34 lines (27 loc) · 710 Bytes

Notes on Bayesian statistics, simulation and software (2016)

Course Page

Moodle Page

http://csrgxtu.github.io/2015/03/20/Writing-Mathematic-Fomulars-in-Markdown/ $\sum$

Installing R using brew

brew install r
(optional)brew install r-gui
(optional)brew linkapps r-gui # creates symlink in /Applications
brew install Caskroom/cask/rstudio
brew install jags

Install jags in R

install.packages("rjags")
Load jags in R
library(rjags)

(alt) R from precompiled binary

download R from http://cran.cnr.berkeley.edu/

Python alternative

pip install pyjags