From c72be0b9482eb832c538008ea1116f5ec8c7332f Mon Sep 17 00:00:00 2001 From: Etienne Bacher <52219252+etiennebacher@users.noreply.github.com> Date: Thu, 22 Aug 2024 13:44:02 +0200 Subject: [PATCH 1/2] Put vignettes in `.Rbuildignore` --- .Rbuildignore | 2 ++ vignettes/overview_of_vignettes.Rmd | 40 +++++++++++++++++++++++++++++ 2 files changed, 42 insertions(+) create mode 100644 vignettes/overview_of_vignettes.Rmd diff --git a/.Rbuildignore b/.Rbuildignore index d245bf8c3..65a0a7f67 100644 --- a/.Rbuildignore +++ b/.Rbuildignore @@ -48,3 +48,5 @@ references.bib ^CRAN-SUBMISSION$ docs ^.dev$ +^vignettes/s. +^vignettes/t. diff --git a/vignettes/overview_of_vignettes.Rmd b/vignettes/overview_of_vignettes.Rmd new file mode 100644 index 000000000..9a6afc976 --- /dev/null +++ b/vignettes/overview_of_vignettes.Rmd @@ -0,0 +1,40 @@ +--- +title: "Overview of Vignettes" +output: + rmarkdown::html_vignette: +vignette: > + %\VignetteIndexEntry{Overview of Vignettes} + \usepackage[utf8]{inputenc} + %\VignetteEngine{knitr::rmarkdown} +editor_options: + chunk_output_type: console +--- + +```{r message=FALSE, warning=FALSE, include=FALSE} +library(knitr) +knitr::opts_chunk$set( + echo = TRUE, + collapse = TRUE, + warning = FALSE, + message = FALSE, + comment = "#>", + eval = TRUE +) +``` + +All package vignettes are available at [https://easystats.github.io/datawizard/](https://easystats.github.io/datawizard/). + +## Function Overview + +* [Function Reference](https://easystats.github.io/datawizard/reference/index.html) + + +## Data Preparation + +* [Coming from 'tidyverse'](https://easystats.github.io/datawizard/articles/tidyverse_translation.html) +* [A quick summary of selection syntax in `{datawizard}`](https://easystats.github.io/datawizard/articles/selection_syntax.html) + + +## Statistical Transformations + +* [Data Standardization](https://easystats.github.io/datawizard/articles/standardize_data.html) From f52823d49aa798520596ffbcf76a139e5b97af0a Mon Sep 17 00:00:00 2001 From: Etienne Bacher <52219252+etiennebacher@users.noreply.github.com> Date: Fri, 23 Aug 2024 18:50:34 +0200 Subject: [PATCH 2/2] fix pkgdown --- pkgdown/_pkgdown.yaml | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/pkgdown/_pkgdown.yaml b/pkgdown/_pkgdown.yaml index d52994e16..6e6feb5b2 100644 --- a/pkgdown/_pkgdown.yaml +++ b/pkgdown/_pkgdown.yaml @@ -125,6 +125,11 @@ reference: - nhanes_sample articles: + - title: Overview of vignettes + navbar: ~ + contents: + - overview_of_vignettes + - title: Data Preparation desc: | Articles explaining utility of 'datawizard' for data wrangling