-
-
Notifications
You must be signed in to change notification settings - Fork 62
/
_pkgdown.yml
123 lines (114 loc) · 3 KB
/
_pkgdown.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
url: https://mc-stan.org/cmdstanr
destination: docs
development:
mode: release
template:
params:
bootswatch: cosmo
navbar:
title: "cmdstanr"
left:
- icon: fa-home fa-lg
href: index.html
- text: "Vignettes"
href: articles/index.html
- text: "Functions"
href: reference/index.html
- text: "News"
href: news/index.html
- text: "Other Packages"
menu:
- text: "rstan"
href: https://mc-stan.org/rstan
- text: "rstanarm"
href: https://mc-stan.org/rstanarm
- text: "bayesplot"
href: https://mc-stan.org/bayesplot
- text: "shinystan"
href: https://mc-stan.org/shinystan
- text: "loo"
href: https://mc-stan.org/loo
- text: "projpred"
href: https://mc-stan.org/projpred
- text: "rstantools"
href: https://mc-stan.org/rstantools
- text: "posterior"
href: https://mc-stan.org/posterior
- text: "Stan"
href: https://mc-stan.org
right:
- icon: fa-twitter
href: https://twitter.com/mcmc_stan
- icon: fa-github
href: https://github.com/stan-dev/cmdstanr
- icon: fa-users
href: https://discourse.mc-stan.org/
home:
links:
- text: Ask a question
href: https://discourse.mc-stan.org/
toc:
depth: 4
articles:
- title: "Getting started"
desc: >
Installing CmdStan, fitting models, and accessing results.
contents:
- cmdstanr
- title: "More details"
desc: >
More information about compilation, passing in data,
how CmdStan ouput is written to CSV and read back into R,
profiling Stan programs, running Stan on GPUs,
and using CmdStanR in R Markdown documents.
contents:
- cmdstanr-internals
- posterior
- r-markdown
- profiling
- articles-online-only/opencl
reference:
- title: "Package overview and global options"
desc: >
An overview of the package and how it differs from
[RStan](https://mc-stan.org/rstan).
contents:
- cmdstanr-package
- cmdstanr_global_options
- title: "Installing and setting the path to CmdStan"
desc: >
Install CmdStan, assuming the necessary C++ toolchain.
contents:
- install_cmdstan
- cmdstan_path
- title: "Running CmdStan from R"
desc: >
Run CmdStan from R.
contents:
- cmdstan_model
- CmdStanModel
- starts_with("model-method")
- cmdstanr_example
- title: "Fitted model objects and methods"
contents:
- CmdStanMCMC
- CmdStanMLE
- CmdStanLaplace
- CmdStanVB
- CmdStanPathfinder
- CmdStanGQ
- CmdStanDiagnose
- starts_with("fit-method")
- title: "Other tools"
contents:
- read_cmdstan_csv
- write_stan_json
- write_stan_file
- draws_to_csv
- as_mcmc.list
- as_draws.CmdStanMCMC
- cmdstan_coercion
- title: "Using CmdStanR with knitr and R Markdown"
contents:
- register_knitr_engine
- eng_cmdstan