From 33e91c7322a78ba0a3f6af9b1364889d94c27c64 Mon Sep 17 00:00:00 2001 From: Laurent Modolo <laurent.modolo@ens-lyon.fr> Date: Fri, 27 Aug 2021 14:49:07 +0200 Subject: [PATCH] CONTRIBUTING.md: add training exercices to do --- CONTRIBUTING.md | 7 +++---- WDI.Rmd | 7 ++++++- session_1/bioconductor.Rmd | 27 +++++++++++++++++++++++++++ session_1/github.Rmd | 27 +++++++++++++++++++++++++++ 4 files changed, 63 insertions(+), 5 deletions(-) create mode 100644 session_1/bioconductor.Rmd create mode 100644 session_1/github.Rmd diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md index 12c1b7d..4b11484 100644 --- a/CONTRIBUTING.md +++ b/CONTRIBUTING.md @@ -1,6 +1,5 @@ # 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 diff --git a/WDI.Rmd b/WDI.Rmd index cf65520..2cd9e27 100644 --- a/WDI.Rmd +++ b/WDI.Rmd @@ -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 diff --git a/session_1/bioconductor.Rmd b/session_1/bioconductor.Rmd new file mode 100644 index 0000000..1e366f8 --- /dev/null +++ b/session_1/bioconductor.Rmd @@ -0,0 +1,27 @@ +--- +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 diff --git a/session_1/github.Rmd b/session_1/github.Rmd new file mode 100644 index 0000000..ce8900a --- /dev/null +++ b/session_1/github.Rmd @@ -0,0 +1,27 @@ +--- +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 -- GitLab