Last active
May 1, 2018 11:20
-
-
Save datawookie/61d7a662ecaad87044e1c9f161a5245f 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
functions { # User-defined functions [Optional] | |
} | |
data { # Data (external) [Optional] | |
} | |
transformed data { # Preprocess data [Optional] | |
} | |
parameters { # Model parameters (must precede model) [Mandatory] | |
} | |
transformed parameters { # Preprocess parameters [Optional] | |
} | |
model { # Model [Mandatory] | |
} | |
generated quantities { # Postprocess [Optional] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment