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" ) )