Created
October 17, 2016 01:00
-
-
Save kosugitti/c3a889a1fa6e7f070cafefc08d831bda 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
data{ | |
int N; | |
vector[N] X; | |
vector[N] Y; | |
} | |
parameters{ | |
real alpha; | |
real beta; | |
real<lower=0> sigma; | |
} | |
model{ | |
Y ~ normal(alpha+beta*X,sigma); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment