Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/GuillaumePressiat/nomensland
Package contenant des nomenclatures et classifications pour le pmsi
https://github.com/GuillaumePressiat/nomensland
ccam cim csarr ghm ghs lpp pmsi r
Last synced: 2 months ago
JSON representation
Package contenant des nomenclatures et classifications pour le pmsi
- Host: GitHub
- URL: https://github.com/GuillaumePressiat/nomensland
- Owner: GuillaumePressiat
- License: unlicense
- Created: 2018-04-16T14:01:45.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-22T12:09:51.000Z (8 months ago)
- Last Synced: 2024-08-03T17:12:28.133Z (5 months ago)
- Topics: ccam, cim, csarr, ghm, ghs, lpp, pmsi, r
- Language: Jupyter Notebook
- Homepage: https://guillaumepressiat.github.io/nomensland/index.html
- Size: 125 MB
- Stars: 11
- Watchers: 5
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- frrrenchies - nomensland
README
[![Lifecycle: stable](https://img.shields.io/badge/lifecycle-stable-brightgreen.svg)](https://lifecycle.r-lib.org/articles/stages.html#stable)
[![https://guillaumepressiat.r-universe.dev/badges/nomensland](https://guillaumepressiat.r-universe.dev/badges/nomensland)](https://guillaumepressiat.r-universe.dev/ui#builds)# nomensland
Package contenant des nomenclatures et classifications pour le PMSI
Voir les vignettes (onglet articles / dossier vignettes) pour plus parlant.
Un exemple d'utilisation en python est également disponible [ici](https://github.com/GuillaumePressiat/nomensland/tree/master/python) (ce n'est qu'un début).
## Installation du package
### Depuis r-universe (CRAN-like pre-build)
Le plus simple pour installer nomensland est de lancer directement :
```r
install.packages('nomensland', repos = 'https://guillaumepressiat.r-universe.dev')
```Cf [guillaumepressiat.r-universe](https://guillaumepressiat.r-universe.dev/ui#builds).
### Depuis github avec remotes
```r
# install.packages('remotes')
library(remotes)
install_github('guillaumepressiat/nomensland')
```Cette commande lance l'installation du package et de ses dépendances.
### Installation derrière un proxy
Souvent, les établissements hospitaliers ont mis en place un proxy qui empèche l'installation pratique d'un package sur github.
Voici comment faire dans ce cas.```r
# install.packages('httr')
library(httr)
set_config( use_proxy(
url = "proxy_url", # Remplacer proxy_url par l'URL de votre proxy
port = 8080,
username = "user", # Remplacer user par votre nom d'utilisateur du proxy
password = "password" #Remplacer password par votre nom d'utilisateur du proxy
))# install.packages('remotes')
library(remotes)
install_github('guillaumepressiat/nomensland')
```