Skip to content

Commit ba8acd9

Browse files
author
Craig Gower-Page
authored
Rename intro vignette (#436)
1 parent 3d7f616 commit ba8acd9

File tree

3 files changed

+35
-3
lines changed

3 files changed

+35
-3
lines changed

_pkgdown.yml

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -194,3 +194,13 @@ reference:
194194
- title: Miscellaneous
195195
contents:
196196
- STAN_BLOCKS
197+
198+
articles:
199+
- title: Articles
200+
navbar: ~
201+
contents:
202+
- quickstart
203+
- '`statistical-specification`'
204+
- '`custom-model`'
205+
- '`extending-jmpost`'
206+

inst/WORDLIST

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,6 +142,8 @@ du
142142
int
143143
pk
144144
LogitNormal
145+
parameterised
146+
Quickstart
145147
csv
146148
saveObject
147149
submodel
Lines changed: 23 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,9 @@
11
---
2-
title: "Model Fitting"
2+
title: "jmpost Quickstart"
33
package: jmpost
44
output: rmarkdown::html_vignette
55
vignette: >
6-
%\VignetteIndexEntry{Model Fitting}
6+
%\VignetteIndexEntry{jmpost Quickstart}
77
%\VignetteEncoding{UTF-8}
88
%\VignetteEngine{knitr::rmarkdown}
99
editor_options:
@@ -18,7 +18,27 @@ knitr::opts_chunk$set(
1818
library(jmpost)
1919
```
2020

21-
Here we describe the basic steps of joint model fitting with `{jmpost}`.
21+
22+
# IMPORTANT
23+
24+
Please note that this document is currently a work-in-progress and does not
25+
contain complete information for this package yet.
26+
27+
28+
# Introduction
29+
30+
The `jmpost` package is used to fit joint models of time-to-event endpoints with an association term
31+
parameterised from a longitudinal submodel. The package was originally designed for the context of
32+
fitting tumour growth inhibition models to inform overall survival but is not limited to this application.
33+
34+
It is important to note that `jmpost` is just a wrapper on top of the Stan programming language and
35+
leans heavily on the wider Stan ecosystem. For example no model diagnostics are provided by `jmpost` with
36+
users being recommended to use packages like `bayesplot` for this functionality.
37+
38+
This vignette provides a basic outline of how to fit a joint model using `jmpost`. For more detailed
39+
information on the package and its functions please refer to the package documentation.
40+
41+
2242

2343
# Model Specification
2444

0 commit comments

Comments
 (0)