ENSL L3 Biosciences - Biostatistiques
Page du cours sur le portail des études (notamment pour accéder aux tests de contrôle continu).
References
Cours
- “Introduction to Statistical Thinking (With R, Without Calculus)”, Benjamin Yakir (web version, repository with pdf and data, sources)
- Statistique inférentielle, Idées, démarches, exemples (Daudin, Robin, Vuillet, PUR),
- Statistique en action (Schtolz, Rivoirard, Vuibert),
- Statistiques avec R (Cornillon et al., PUR)
Sites web
- Les cours de Marie-Pierre Etienne
- Les cours de Julien Chiquet
- Les cours de Nathalie Vialaneix
- Statistics in Action with R
- Enseignements de Statistique en Biologie
- WikiStat
Support de cours
- Cours 1 : introduction
- Cours 2 : estimation
- Cours 3 : tests
- Cours 4 : ANOVA1
- Cours 5 : ANOVA2
- Cours 6 : Régression linéaire
Support de TD
TD0: Prise en main de R et Rstudio et sources (codes et données)- TD1 (1h30): Statistiques descriptives et sources (codes et données)
- TD2 (2h): Simulation, estimation, variabilité d’échantillonnage et robustesse et sources (codes)
- TD3-4 (2x2h): Tests d’hypothèses et sources (codes)
- TD5 (2h): ANOVA et sources (codes)
- TD6 (2h): Régression linéaire et sources (codes)
- TD7 (2h): application, work with your experimental data
- TD8 (2h): exercices from past exams
Solution des exercices
For Rstudio on the ENS computers
In a terminal run :
/usr/local/rstudio/bin/rstudio
Rmarkdown notebook building
- Install the
knitr
package withinstall.packages("knitr")
; - If needed, to install LaTeX, run the following commands in R, and then restart R/Rstudio:
install.packages(tinytex)
::intall_tinytex() tinytex
- Avoid running
install.packages("xxxx")
inside Rmarkdown notebooks (just run it inside the R console before); - Click on the
Knit
button or tapCtrl+Shift+K
to render the document.