Skip to content

Instantly share code, notes, and snippets.

@mages
Last active August 29, 2015 18:35
Show Gist options
  • Save mages/17e8157b6b9c140078e6 to your computer and use it in GitHub Desktop.
Save mages/17e8157b6b9c140078e6 to your computer and use it in GitHub Desktop.
library(brms)
# Linear Gaussian model
lin.mod <- brm(units ~ temp, family="gaussian")
# Log-transformed Linear Gaussian model
log.lin.mod <- brm(log_units ~ temp, family="gaussian")
# Poisson model
pois.mod <- brm(units ~ temp, family="poisson")
# Binomial model
bin.mod <- brm(units | trials(market.size) ~ temp, family="binomial")
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment