Last active
August 29, 2015 18:35
-
-
Save mages/17e8157b6b9c140078e6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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