Skip to content

Commit

Permalink
Put vignettes in .Rbuildignore (#534)
Browse files Browse the repository at this point in the history
* Put vignettes in `.Rbuildignore`

* fix pkgdown
  • Loading branch information
etiennebacher authored Aug 24, 2024
1 parent a610fd1 commit 4f0b5b7
Show file tree
Hide file tree
Showing 3 changed files with 47 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .Rbuildignore
Original file line number Diff line number Diff line change
Expand Up @@ -48,3 +48,5 @@ references.bib
^CRAN-SUBMISSION$
docs
^.dev$
^vignettes/s.
^vignettes/t.
5 changes: 5 additions & 0 deletions pkgdown/_pkgdown.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
40 changes: 40 additions & 0 deletions vignettes/overview_of_vignettes.Rmd
Original file line number Diff line number Diff line change
@@ -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)

0 comments on commit 4f0b5b7

Please sign in to comment.