-
Notifications
You must be signed in to change notification settings - Fork 4
/
README.Rmd
74 lines (62 loc) · 1.87 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# tutor
<!-- badges: start -->
[![CRAN status](https://www.r-pkg.org/badges/version/tutor)](https://CRAN.R-project.org/package=tutor)
[![check-standard](https://github.com/ThinkR-open/tutor/actions/workflows/check-standard.yaml/badge.svg)](https://github.com/ThinkR-open/tutor/actions/workflows/check-standard.yaml)
[![Lifecycle: experimental](https://img.shields.io/badge/lifecycle-experimental-orange.svg)](https://lifecycle.r-lib.org/articles/stages.html#experimental)
<!-- badges: end -->
The goal of tutor is to serve learnr tutorial
## Installation
``` r
# install.packages("devtools")
remotes::install_github("VincentGuyader/tutor")
```
## Available tutorial
```{r eval=FALSE, include=FALSE}
ls(package:tutor) %>% paste0("tutor::",.) %>% paste0("() \n") %>% cat
```
```{r eval=FALSE}
tutor::bar_charts_en()
tutor::bar_charts_fr()
tutor::boxplots_en()
tutor::boxplots_fr()
tutor::customize_en()
tutor::customize_fr()
tutor::deriving_en()
tutor::deriving_fr()
tutor::exploratory_data_analysis_en()
tutor::exploratory_data_analysis_fr()
tutor::histograms_en()
tutor::histograms_fr()
tutor::isolating_en()
tutor::isolating_fr()
tutor::join_datasets_en()
tutor::join_datasets_fr()
tutor::launch_learn()
tutor::line_graphs_en()
tutor::line_graphs_fr()
tutor::overplotting_en()
tutor::overplotting_fr()
tutor::programming_basics_en()
tutor::programming_basics_fr()
tutor::reshape_data_en()
tutor::reshape_data_fr()
tutor::scatterplots_en()
tutor::scatterplots_fr()
tutor::separate_columns_en()
tutor::separate_columns_fr()
tutor::tibbles_en()
tutor::tibbles_fr()
tutor::vis_basics_en()
```