|
12 | 12 | #' printed. There are three options for this argument: |
13 | 13 | #' |
14 | 14 | #' 1. Selecting columns by name or index |
15 | | -#' \cr |
| 15 | +#' |
16 | 16 | #' `select` can be a character vector (or numeric index) of column names that |
17 | | -#' should be printed. There are two pre-defined options for selecting columns: |
18 | | -#' `select = "minimal"` prints coefficients, confidence intervals and p-values, |
19 | | -#' while `select = "short"` prints coefficients, standard errors and p-values. |
| 17 | +#' should be printed, where columns are extracted from the data frame returned |
| 18 | +#' by `model_parameters()` and related functions. |
| 19 | +#' |
| 20 | +#' There are two pre-defined options for selecting columns: |
| 21 | +#' `select = "minimal"` prints coefficients, confidence intervals and |
| 22 | +#' p-values, while `select = "short"` prints coefficients, standard errors and |
| 23 | +#' p-values. |
20 | 24 | #' |
21 | 25 | #' 2. A string expression with layout pattern |
22 | | -#' \cr |
23 | | -#' `select` is a string with "tokens" enclosed in braces. These tokens will |
24 | | -#' be replaced by their associated columns, where the selected columns will |
25 | | -#' be collapsed into one column. However, it is possible to create multiple |
26 | | -#' columns as well. Following tokens are replaced by the related coefficients |
27 | | -#' or statistics: `{estimate}`, `{se}`, `{ci}` (or `{ci_low}` and `{ci_high}`), |
28 | | -#' `{p}` and `{stars}`. The token `{ci}` will be replaced by `{ci_low}, {ci_high}`. |
29 | | -#' Furthermore, a `|` separates values into new cells/columns. If |
30 | | -#' `format = "html"`, a `<br>` inserts a line break inside a cell. See |
| 26 | +#' |
| 27 | +#' `select` is a string with "tokens" enclosed in braces. These tokens will be |
| 28 | +#' replaced by their associated columns, where the selected columns will be |
| 29 | +#' collapsed into one column. Following tokens are replaced by the related |
| 30 | +#' coefficients or statistics: `{estimate}`, `{se}`, `{ci}` (or `{ci_low}` and |
| 31 | +#' `{ci_high}`), `{p}` and `{stars}`. The token `{ci}` will be replaced by |
| 32 | +#' `{ci_low}, {ci_high}`. Example: `select = "{estimate}{stars} ({ci})"` |
| 33 | +#' |
| 34 | +#' It is possible to create multiple columns as well. A `|` separates values |
| 35 | +#' into new cells/columns. Example: `select = "{estimate} ({ci})|{p}"`. |
| 36 | +#' |
| 37 | +#' If `format = "html"`, a `<br>` inserts a line break inside a cell. See |
31 | 38 | #' 'Examples'. |
32 | 39 | #' |
33 | 40 | #' 3. A string indicating a pre-defined layout |
34 | | -#' \cr |
| 41 | +#' |
35 | 42 | #' `select` can be one of the following string values, to create one of the |
36 | 43 | #' following pre-defined column layouts: |
37 | 44 | #' |
|
0 commit comments