-
Notifications
You must be signed in to change notification settings - Fork 1
/
README.Rmd
58 lines (43 loc) · 1.41 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
---
output: github_document
---
```{r package, echo = FALSE, message = FALSE, warning = FALSE}
library("refpmsi")
```
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# refpmsi
Package de référentiels PMSI : [83 référentiels disponibles](https://denisgustin.github.io/refpmsi/articles/liste_ref.html)
Dernière mise à jour : **10 septembre 2024**
[Etre tenu au courant des mises à jour et ajouts de référentiels PMSI](http://www.lespmsi.com/r-et-pmsi/)
## Installation
Téléchargement du package `refpmsi` à partir de Github.
```{r installation, eval = FALSE}
# 1ere solution avec le package remotes::
# install.packages("remotes")
# library("remotes")
remotes::install_github("denisGustin/refpmsi")
# 2eme solution avec le package devtools::
# install.packages("devtools")
# library("devtools")
devtools::install_github("denisGustin/refpmsi")
# Risque d'erreur si RTools (https://cran.r-project.org/bin/windows/Rtools/) n'est pas installé
# activation du package refpmsi::
library("refpmsi")
```
## Mise à jour
```{r mise_a_jour, eval = FALSE}
# 1ere étape : suppression du package refpmsi
remove.packages("refpmsi")
# 2eme étape : ré-installation
# voir ci-dessus "installation"
# activation du package refpmsi::
library("refpmsi")
```