Skip to content

Commit

Permalink
added riskCommunicator as CRAN package to DESCRIPTION
Browse files Browse the repository at this point in the history
  • Loading branch information
pydemull committed Sep 11, 2024
1 parent 03c8977 commit 5798694
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 15 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy_bookdown.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
key: ${{ runner.os }}-${{ steps.get-r-version.outputs.version }}-3-

- name: Cache bookdown results
uses: actions/cache@v1
uses: actions/cache@v4
with:
path: _bookdown_files
key: bookdown-2-${{ hashFiles('**/*Rmd') }}
Expand Down
12 changes: 1 addition & 11 deletions 04-Bivariate_analyses.Rmd
Original file line number Diff line number Diff line change
Expand Up @@ -746,17 +746,7 @@ $$p_T = \frac{n_{T1}}{n_{T0} + n_{T1}}$$
La différence de risque d'être malade pour le groupe contrôle par rapport au groupe traité de l'exemple, notée $DR$, est alors :

$$p_C - p_T $$
Avec R, la différence de risque peut être obtenue avec le package `riskCommunicator`. Il s'agit d'un package qui n'existe pas sur CRAN, mais seulement sur Github. Pour pouvoir l'installer à partir de Github, il faut d'abord installer un package qui permet ce type d'installation, tel que le package `devtools` :
```{r, eval = FALSE}
install.packages("devtools")
```

Le package `riskCommunicator` peut alors être installé en suivant la procédure ci-dessous :
```{r, eval = FALSE}
devtools::install_github("jgrembi/riskCommunicator")
```

Pour utiliser le package `riskCommunicator`, il faut bien sûr ensuite le charger :
Avec R, la différence de risque peut être obtenue avec le package `riskCommunicator`. Pour utiliser le package `riskCommunicator`, il faut bien sûr ensuite le charger :
```{r}
library(riskCommunicator)
```
Expand Down
4 changes: 1 addition & 3 deletions DESCRIPTION
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,4 @@ Imports:
skimr,
janitor,
ggdist,
riskCommunicator (>= 1.0.1)
Remotes:
jgremb/riskCommunicator
riskCommunicator

0 comments on commit 5798694

Please sign in to comment.