Browse Source

Points sur le graph qu'aux entrées/sorties

static
Maxime Wack 6 years ago
parent
commit
b363a29399
1 changed files with 4 additions and 1 deletions
  1. +4
    -1
      app.R

+ 4
- 1
app.R View File

@@ -227,7 +227,10 @@ server <- shinyServer(function(input, output, session)
plotVilleSpe() %>%
ggplot(aes(x = Date, y = Rang, color = Etudiant)) +
geom_line() +
geom_point()
geom_point(data = plotVilleSpe() %>%
group_by(Etudiant) %>%
filter(!Rang %>% is.na & (lag(Rang) %>% is.na | lead(Rang) %>% is.na))
)
})

output$outTable <- renderDataTable(


Loading…
Cancel
Save