Browse Source

Fix for dmap_if -> mutate_if

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

+ 1
- 1
index.Rmd View File

@@ -66,7 +66,7 @@ endoscopies <- reactive(
read_csv(input$ext$datapath, locale = locale(decimal_mark = ",")) %>%
setNames(c("Venue", "Intervention", "Acte", "Tarif", "Acte_libelle", "Service", "Type_venue")) %>%
left_join(liste_actes %>% select(Code, Appareil), by = c("Acte" = "Code")) %>%
dmap_if(is.character, factor) %>%
mutate_if(is.character, factor) %>%
filter(Tarif != 0) %>%
distinct
}


Loading…
Cancel
Save