Skip to content

Commit 8290cf5

Browse files
committed
Added link to stan model and author list
1 parent 50a1431 commit 8290cf5

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

knitr/hmm-example/hmm-example.Rmd

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
---
22
title: "HMM Example"
3-
output: html_document
3+
author: "Ben Bales, Charles Margossian"
4+
output:
5+
html_document: default
6+
pdf_document: default
47
---
58

69
```{r setup, include=FALSE}
@@ -182,6 +185,8 @@ model {
182185
}
183186
```
184187

188+
The complete model is available on Github: [hmm-example.stan](https://github.com/stan-dev/example-models/tree/master/knitr/hmm-example/hmm-example.stan).
189+
185190
```{r echo = TRUE, results = FALSE, message = FALSE}
186191
model = cmdstan_model("hmm-example.stan")
187192
fit = model$sample(data = list(N = N, y = y), parallel_chains = 4)

0 commit comments

Comments
 (0)