From eb86ccf24682f363b5655dd78bd627f9c9228118 Mon Sep 17 00:00:00 2001 From: Maxime Wack Date: Thu, 13 Apr 2017 16:21:12 +0200 Subject: [PATCH] =?UTF-8?q?Copie=20fichier=20de=20requ=C3=AAte=20dans=20un?= =?UTF-8?q?=20r=C3=A9pertoire=20servi=20par=20apache?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- index.rmd | 14 ++++++++++++++ 1 file changed, 14 insertions(+) diff --git a/index.rmd b/index.rmd index febe910..2a97666 100644 --- a/index.rmd +++ b/index.rmd @@ -34,7 +34,21 @@ options(DT.options = list(paging = F, ## Chargement des données +Le fichier d'exhaustivité doit être fourni au format CSV avec les paramètres suivants : + +* séparateur de champs = , +* guillemets = " +* encodage = UTF-8 +* séparateur de décimales = , + +et doit être issu de la [requête suivante](https://livenne.chu-nancy.fr/shiny_files/cloture/exhaustivite.wid), exécutée le jour de la cloture. + ```{r data} +if (!dir.exists("/var/www/html/shiny_files/cloture")) + dir.create("/var/www/html/shiny_files/cloture") + +file.copy("exhaustivite.wid", "/var/www/html/shiny_files/cloture", overwrite = T) -> null + inputPanel( numericInput("annee", "Année", Sys.Date() %>% year), numericInput("mois", "Mois", Sys.Date() %>% month - 1)