Skip to content
Snippets Groups Projects
Commit 012dab69 authored by Laurent Modolo's avatar Laurent Modolo
Browse files

Merge branch 'carine_dev' into 'master'

Carine dev

See merge request can/R_basis!3
parents 00da8df5 2c011be2
No related branches found
No related tags found
2 merge requests!6Switch to main as default branch,!4update contributing
...@@ -3,12 +3,12 @@ ...@@ -3,12 +3,12 @@
The sessions will be starting the 14/09: The sessions will be starting the 14/09:
- **Monday 11h - 12h30** - **Monday 11h - 12h30**
- salle de TP du CBP: 20/09, 27/04, 04/10, 11/10, 18/10, 25/10, 08/11, 15/11 - salle de TP du CBP: 20/09, 27/09, 04/10, 11/10, 18/10, 25/10, 08/11, 15/11
- **Tuesday 11h - 12h30** - **Tuesday 11h - 12h30**
- salle de TP du CBP: 14/09, 21/04 - salle de TP du CBP: 14/09, 21/09
- salle de TP de l’IBCP: 12/10, 19/10, 26/10, 02/11, 09/11, 23/11 - salle de TP de l’IBCP: 12/10, 19/10, 26/10, 02/11, 09/11, 23/11
- **Friday 11h - 12h30** - **Friday 11h - 12h30**
- salle de TP du CBP: 17/09, 24/04, 01/10, 08/10, 15/10, 22/10, 29/10, 05/11, 12/11, 19/11 - salle de TP du CBP: 17/09, 24/09, 01/10, 08/10, 15/10, 22/10, 29/10, 05/11, 12/11, 19/11
Groups: Groups:
## Monday ## Monday
......
...@@ -24,4 +24,18 @@ klippy::klippy( ...@@ -24,4 +24,18 @@ klippy::klippy(
tooltip_success = 'Copied !') tooltip_success = 'Copied !')
``` ```
To install packages from [Bioconducor](http://www.bioconductor.org) you need to To install packages from [bioconductor](http://www.bioconductor.org) you must first install a package called "BiocManager".
\ No newline at end of file This package imports a function called "install" allowing you to install packages hosted in bioconductor from their name.
To install "BiocManager" you must type:
```R
install.packages("BiocManager")
```
Then to install, for example "tximport", you just have to write:
```R
BiocManager::install("tximport")
```
...@@ -24,4 +24,27 @@ klippy::klippy( ...@@ -24,4 +24,27 @@ klippy::klippy(
tooltip_success = 'Copied !') tooltip_success = 'Copied !')
``` ```
To install packages from [github](https://github.com/) you need to If you need to install a package that is not available on the CRAN but on a github repository, you can do it using the "remotes" package. Indeed this package imports functions that will allow you to install a package available on [github](https://github.com/) or bitbucket or gitlab directly on your computer.
\ No newline at end of file
To use the "remotes" packages, you must first install it:
```R
install.packages("remotes")
```
Once "remotes" is installed, you will be able to install all R package from github or from their URL.
For example, if you want to install the last version of a "gganimate", which allow you to animate ggplot2 graphes, you can use :
```R
remotes::install_github("thomasp85/gganimate")
```
By default the latest version of the package is installed, if you want a given version you can specify it :
```R
remotes::install_github("thomasp85/gganimate@v1.0.7")
```
You can find more information in the documentation of remotes : [https://remotes.r-lib.org](https://remotes.r-lib.org)
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