|
| 1 | +url: https://mc-stan.org/rstantools |
| 2 | + |
| 3 | +destination: "." |
| 4 | + |
| 5 | +template: |
| 6 | + package: pkgdownconfig |
| 7 | + |
| 8 | +development: |
| 9 | + mode: auto |
| 10 | + |
| 11 | +navbar: |
| 12 | + title: "rstantools" |
| 13 | + |
| 14 | + structure: |
| 15 | + left: [home, vignettes, functions, news, pkgs, stan] |
| 16 | + right: [search, bluesky, forum, github, lightswitch] |
| 17 | + |
| 18 | + components: |
| 19 | + pkgs: |
| 20 | + text: Other Packages |
| 21 | + menu: |
| 22 | + - text: bayesplot |
| 23 | + href: https://mc-stan.org/bayesplot |
| 24 | + - text: cmdstanr |
| 25 | + href: https://mc-stan.org/cmdstanr |
| 26 | + - text: loo |
| 27 | + href: https://mc-stan.org/loo |
| 28 | + - text: posterior |
| 29 | + href: https://mc-stan.org/posterior |
| 30 | + - text: projpred |
| 31 | + href: https://mc-stan.org/projpred |
| 32 | + - text: rstan |
| 33 | + href: https://mc-stan.org/rstan |
| 34 | + - text: rstanarm |
| 35 | + href: https://mc-stan.org/rstanarm |
| 36 | + - text: shinystan |
| 37 | + href: https://mc-stan.org/shinystan |
| 38 | + |
| 39 | +articles: |
| 40 | + - title: "Recommendations for R package development with Stan" |
| 41 | + desc: > |
| 42 | + This vignette provides many recommendations for developers interested in |
| 43 | + creating an R package that interface with Stan. Topics include |
| 44 | + development best practices, precompiling Stan programs, R code and |
| 45 | + documentation, and more. |
| 46 | + contents: |
| 47 | + - developer-guidelines |
| 48 | + - title: "Step-by-step guide" |
| 49 | + desc: > |
| 50 | + This vignette walks through the steps required to set up a package with |
| 51 | + a precompiled Stan model, from creating the initial package structure to |
| 52 | + adding the precompiled Stan program and writing the R function that users |
| 53 | + will call to fit the model. |
| 54 | + contents: |
| 55 | + - minimal-rstan-package |
| 56 | + |
| 57 | +reference: |
| 58 | + - title: "Package structure" |
| 59 | + desc: > |
| 60 | + Creating the basic structure of a Stan-based R package or add |
| 61 | + Stan programs to an existing package. |
| 62 | + contents: |
| 63 | + - rstantools-package |
| 64 | + - rstan_create_package |
| 65 | + - use_rstan |
| 66 | + - rstan_config |
| 67 | + - rstantools_load_code |
| 68 | + - title: "Generics" |
| 69 | + desc: > |
| 70 | + S3 generics (and some default methods) for adding functionality |
| 71 | + to your package using the same naming conventions as **rstanarm** |
| 72 | + and other Stan-based R packages. |
| 73 | + contents: |
| 74 | + - bayes_R2 |
| 75 | + - log_lik |
| 76 | + - loo-prediction |
| 77 | + - posterior_interval |
| 78 | + - posterior_epred |
| 79 | + - posterior_linpred |
| 80 | + - posterior_predict |
| 81 | + - predictive_error |
| 82 | + - predictive_interval |
| 83 | + - prior_summary |
0 commit comments