Skip to content
Snippets Groups Projects
Verified Commit 33e91c73 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

CONTRIBUTING.md: add training exercices to do

parent f25fe906
No related branches found
No related tags found
No related merge requests found
# Objectifs
- Planifier des sessions d'1h30
- Apprendre à programmer en même temps que l'apprentissage du langage R
- Bien définir le résultat biologique que l'on veut obtenir à la fin de la séance
- Commencer à réfléchir de manière fonctionnelle et linéaire à partir de la 3e séance
- Write the session_1/bioconductor.Rmd training (and add link in session_1.Rmd)
- Write the session_1/github.Rmd training (and add link in session_1.Rmd)
- Write the WDI.Rmd training which will be for a later session
\ No newline at end of file
......@@ -50,4 +50,9 @@ ggplot(
color = country
)) +
geom_line()
```
\ No newline at end of file
```
# Plot of fertility rate and life expetency by country through time
# Plot of GPD and child survival by country through time
\ No newline at end of file
---
title: 'R.1: Installing packages from Bioconductor'
author: "Laurent Modolo [laurent.modolo@ens-lyon.fr](mailto:laurent.modolo@ens-lyon.fr)"
date: "2021"
output:
rmdformats::downcute:
self_contain: false
use_bookdown: true
default_style: "dark"
lightbox: true
css: "../src/style.css"
---
```{r setup, include=FALSE}
rm(list=ls())
knitr::opts_chunk$set(echo = TRUE)
knitr::opts_chunk$set(comment = NA)
```
```{r klippy, echo=FALSE, include=TRUE}
klippy::klippy(
position = c('top', 'right'),
color = "white",
tooltip_message = 'Click to copy',
tooltip_success = 'Copied !')
```
To install packages from [Bioconducor](http://www.bioconductor.org) you need to
\ No newline at end of file
---
title: 'R.1: Installing packages from github'
author: "Laurent Modolo [laurent.modolo@ens-lyon.fr](mailto:laurent.modolo@ens-lyon.fr)"
date: "2021"
output:
rmdformats::downcute:
self_contain: false
use_bookdown: true
default_style: "dark"
lightbox: true
css: "../src/style.css"
---
```{r setup, include=FALSE}
rm(list=ls())
knitr::opts_chunk$set(echo = TRUE)
knitr::opts_chunk$set(comment = NA)
```
```{r klippy, echo=FALSE, include=TRUE}
klippy::klippy(
position = c('top', 'right'),
color = "white",
tooltip_message = 'Click to copy',
tooltip_success = 'Copied !')
```
To install packages from [github](https://github.com/) you need to
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment