Skip to content

Commit e84ba64

Browse files
links
1 parent 1174ec0 commit e84ba64

23 files changed

+49
-49
lines changed

R/datasummary.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
#' See the Details and Examples sections below, and the vignettes on the `modelsummary` website:
1212
#'
1313
#' * https://modelsummary.com/
14-
#' * https://modelsummary.com/articles/datasummary.html
14+
#' * https://modelsummary.com/vignettes/datasummary.html
1515
#'
1616
#' @template kableExtra2tinytable
1717
#'

R/datasummary_balance.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#' summary tables for full data sets. See the Details and Examples sections
77
#' below, and the vignettes on the `modelsummary` website:
88
#' * https://modelsummary.com/
9-
#' * https://modelsummary.com/articles/datasummary.html
9+
#' * https://modelsummary.com/vignettes/datasummary.html
1010
#'
1111
#' @param formula
1212
#' + `~1`: show summary statistics for the full dataset

R/datasummary_correlation.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
#' spaces) to produce a table of human-readable variables. See the Details and
66
#' Examples sections below, and the vignettes on the `modelsummary` website:
77
#' * https://modelsummary.com/
8-
#' * https://modelsummary.com/articles/datasummary.html
8+
#' * https://modelsummary.com/vignettes/datasummary.html
99
#'
1010
#' @inheritParams datasummary
1111
#' @inheritParams modelsummary

R/datasummary_crosstab.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
#' \link{datasummary} directly. See the Details and Examples sections below,
77
#' and the vignettes on the `modelsummary` website:
88
#' * https://modelsummary.com/
9-
#' * https://modelsummary.com/articles/datasummary.html
9+
#' * https://modelsummary.com/vignettes/datasummary.html
1010
#'
1111
#' @inheritParams datasummary
1212
#' @import tables

R/datasummary_skim.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#' See the Details and Examples sections below, and the vignettes on the
55
#' `modelsummary` website:
66
#' * https://modelsummary.com/
7-
#' * https://modelsummary.com/articles/datasummary.html
7+
#' * https://modelsummary.com/vignettes/datasummary.html
88
#'
99
#' @inheritParams datasummary
1010
#' @inheritParams modelsummary

R/get_estimates.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -76,7 +76,7 @@ get_estimates <- function(model, conf_level = .95, vcov = NULL, shape = NULL, co
7676
'parameters::parameters(model)',
7777
'broom::tidy(model)',
7878
'',
79-
'To draw a table, one of these commands must return a `data.frame` with a column named "term". The `modelsummary` website explains how to summarize unsupported models or add support for new models yourself: https://modelsummary.com/articles/modelsummary.html',
79+
'To draw a table, one of these commands must return a `data.frame` with a column named "term". The `modelsummary` website explains how to summarize unsupported models or add support for new models yourself: https://modelsummary.com/vignettes/modelsummary.html',
8080
'',
8181
'These errors messages were generated during extraction:',
8282
'', '')

R/get_gof.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -133,7 +133,7 @@ broom::glance(model)
133133
134134
One of these functions must return a one-row `data.frame`. The `modelsummary` website explains how to summarize unsupported models or add support for new models yourself:
135135
136-
https://modelsummary.com/articles/modelsummary.html',
136+
https://modelsummary.com/vignettes/modelsummary.html',
137137
class(model)[1]),
138138
call. = FALSE)
139139
}

R/modelplot.R

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
#' more information, see the Details and Examples sections below, and the
55
#' vignettes on the `modelsummary` website:
66
#' https://modelsummary.com/
7-
#' * [modelplot Vignette.](https://modelsummary.com/articles/modelplot.html)
7+
#' * [modelplot Vignette.](https://modelsummary.com/vignettes/modelplot.html)
88
#'
99
#' @inheritParams modelsummary
1010
#' @param draw TRUE returns a 'ggplot2' object, FALSE returns the data.frame

R/modelsummary.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -43,8 +43,8 @@ globalVariables(c(
4343
#' `flextable`, `huxtable`, `DT`. For more information, see the Details and Examples
4444
#' sections below, and the vignettes on the `modelsummary` website:
4545
#' https://modelsummary.com/
46-
#' * [The `modelsummary` Vignette includes dozens of examples of tables with extensive customizations.](https://modelsummary.com/articles/modelsummary.html)
47-
#' * [The Appearance Vignette shows how to modify the look of tables.](https://modelsummary.com/articles/appearance.html)
46+
#' * [The `modelsummary` Vignette includes dozens of examples of tables with extensive customizations.](https://modelsummary.com/vignettes/modelsummary.html)
47+
#' * [The Appearance Vignette shows how to modify the look of tables.](https://modelsummary.com/vignettes/appearance.html)
4848
#'
4949
#' @template kableExtra2tinytable
5050
#' @template citation

R/modelsummary_rbind.R

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
#' the Details and Examples sections below, and the vignettes on the
1111
#' `modelsummary` website:
1212
#' https://modelsummary.com/
13-
#' * [The `modelsummary` Vignette includes dozens of examples of tables with extensive customizations.](https://modelsummary.com/articles/modelsummary.html)
14-
#' * [The Appearance Vignette shows how to modify the look of tables.](https://modelsummary.com/articles/appearance.html)
13+
#' * [The `modelsummary` Vignette includes dozens of examples of tables with extensive customizations.](https://modelsummary.com/vignettes/modelsummary.html)
14+
#' * [The Appearance Vignette shows how to modify the look of tables.](https://modelsummary.com/vignettes/appearance.html)
1515
#'
1616
#' @param panels a nested list of models
1717
#' * Unnamed nested list with 2 panels: `list(list(model1, model2), list(model3, model4))`

0 commit comments

Comments
 (0)