Skip to content

Commit 90499f2

Browse files
committed
Petites corrections decouverte et nuage_de_points
1 parent 24c17ac commit 90499f2

File tree

3 files changed

+11
-16
lines changed

3 files changed

+11
-16
lines changed

inst/tutorials/02b_decouverte/decouverte.Rmd

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -368,7 +368,7 @@ masse2 <- c(82, 73, 105, 61, 95)
368368
taille2 <- c(1.74, 1.86, 2.03, 1.72, 1.90)
369369
```
370370

371-
```{r data_man, exercise=TRUE, exercise.setup="prepare"}
371+
```{r vec_man, exercise=TRUE, exercise.setup="prepare"}
372372
# Encodage du jeu de données
373373
man1 <- data_frame(
374374
id = ,
@@ -380,7 +380,7 @@ man1 <- data_frame(
380380
381381
```
382382

383-
```{r data_man-solution}
383+
```{r vec_man-solution}
384384
# Encodage du jeu de données
385385
man1 <- data_frame(
386386
id = c(8, 9, 10, 11, 12),

inst/tutorials/02c_nuage_de_points/nuage.Rmd

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,22 +1,19 @@
11
---
2-
title: "Le nuage de point : découverte de l'outils"
2+
title: "Le nuage de point : faire un graphique dans R"
33
author : "Guyliann Engels & Philippe Grosjean"
4+
tutorial:
5+
id: "sdd1.02c"
6+
version: 0.0.1
47
output:
58
learnr::tutorial:
69
progressive: true
710
fig_caption: yes
8-
tutorial:
9-
id: "sdd1.02c"
10-
version: 0.0.1
1111
runtime: shiny_prerendered
1212
---
1313

1414

1515
```{r setup, include=FALSE}
1616
library(learnr)
17-
library(knitr)
18-
SciViews::R()
19-
2017
options(tutorial.event_recorder = BioDataScience::record_sdd)
2118
tutorial_options(exercise.checker = BioDataScience::checker_sdd)
2219
tutorial_options(exercise.timelimit = 60)
@@ -25,6 +22,7 @@ knitr::opts_chunk$set(echo = FALSE, comment = NA)
2522
2623
library(knitr)
2724
library(BioDataScience)
25+
SciViews::R()
2826
2927
# Dataset
3028
urchin <- read(file = "urchin_bio", package = "data.io", lang = "fr")

inst/tutorials/02c_nuage_de_points/nuage.html

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
<meta name="progressive" content="true" />
1515
<meta name="allow-skip" content="false" />
1616

17-
<title>Le nuage de point : découverte de l’outils</title>
17+
<title>Le nuage de point : faire un graphique dans R</title>
1818

1919

2020
<!-- highlightjs -->
@@ -249,8 +249,7 @@ <h3>Exercice 3</h3>
249249
</div>
250250
<div id="section-conclusion" class="section level2">
251251
<h2>Conclusion</h2>
252-
<p>Le nombre d’obèse sur notre jeu de données est 12.6% ce qui est très proche des 13% annoncé par le monde.</p>
253-
<p>Bravo! Vous venez de terminez cette séance d’exercices dans un tutoriel “learnr”.</p>
252+
<p>Bravo! Vous venez de terminer cette séance d’exercices dans un tutoriel “learnr”.</p>
254253
<p>Durant cette séance, vous avez appris à :</p>
255254
<ul>
256255
<li>Effectuer des graphiques de type nuage de point</li>
@@ -267,9 +266,6 @@ <h2>Conclusion</h2>
267266

268267
<script type="application/shiny-prerendered" data-context="server-start">
269268
library(learnr)
270-
library(knitr)
271-
SciViews::R()
272-
273269
options(tutorial.event_recorder = BioDataScience::record_sdd)
274270
tutorial_options(exercise.checker = BioDataScience::checker_sdd)
275271
tutorial_options(exercise.timelimit = 60)
@@ -278,6 +274,7 @@ <h2>Conclusion</h2>
278274

279275
library(knitr)
280276
library(BioDataScience)
277+
SciViews::R()
281278

282279
# Dataset
283280
urchin <- read(file = "urchin_bio", package = "data.io", lang = "fr")
@@ -358,7 +355,7 @@ <h2>Conclusion</h2>
358355

359356
<!-- begin doc-metadata -->
360357
<div id="doc-metadata">
361-
<h2 class="title toc-ignore" style="display:none;">Le nuage de point : découverte de l’outils</h2>
358+
<h2 class="title toc-ignore" style="display:none;">Le nuage de point : faire un graphique dans R</h2>
362359
<h4 class="author"><em>Guyliann Engels &amp; Philippe Grosjean</em></h4>
363360
</div>
364361
<!-- end doc-metadata -->

0 commit comments

Comments
 (0)