Browse Source

Copie des fichiers à télecharger dans un répertoire servi par apache

master
Maxime Wack 7 years ago
parent
commit
c17f3c4482
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      index.Rmd

+ 6
- 1
index.Rmd View File

@@ -44,9 +44,14 @@ Le fichier doit être fournis au format CSV avec les paramètres suivants :
* encodage = UTF-8
* séparateur de décimales = ,

Il doit être issu de la [requête suivante](CRHAP.wid).
Il doit être issu de la [requête suivante](https://livenne.chu-nancy.fr/shiny_files/CRHAP/CRHAP.wid).

```{r data}
if (!dir.exists("/var/www/html/shiny_files/CRHAP"))
dir.create("/var/www/html/shiny_files/CRHAP")

file.copy("CRHAP.wid", "/var/www/html/shiny_files/CRHAP", overwrite = T) -> null

inputPanel(
numericInput("mois", "Mois", (Sys.Date() %>% month) - 1),
numericInput("annee", "Année", Sys.Date() %>% year),


Loading…
Cancel
Save