From 2e7f7579b95d868e728a80580c220f319f201ea1 Mon Sep 17 00:00:00 2001 From: Vincent Arel-Bundock Date: Sat, 20 Jan 2024 22:40:04 -0500 Subject: [PATCH] vignette --- vignettes/tutorial.qmd | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/vignettes/tutorial.qmd b/vignettes/tutorial.qmd index 188f2f60..b16585ee 100644 --- a/vignettes/tutorial.qmd +++ b/vignettes/tutorial.qmd @@ -319,7 +319,7 @@ Markdown syntax can be particularly useful when formatting URL links in a table: ```{r} dat <- data.frame( - Links = c( + `Package (link)` = c( "[`marginaleffects`](https://www.marginaleffects.com/)", "[`modelsummary`](https://www.modelsummary.com/)", "[`tinytable`](https://vincentarelbundock.github.io/tinytable/)", @@ -329,6 +329,17 @@ dat <- data.frame( "[`plot2`](https://grantmcdermott.com/plot2/)", "[`parameters`](https://easystats.github.io/parameters/)", "[`insight`](https://easystats.github.io/insight/)" + ), + Purpose = c( + "Interpreting statistical models", + "Data and model summaries", + "Draw beautiful tables easily", + "Convert country codes and names", + "Download data from the World Bank", + "Create documentation website for R packages", + "Extension of base R plot functions", + "Extract from model objects", + "Extract information from model objects" ) )