Browse Source

Replace collect(n = Inf) with collect

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

+ 2
- 2
app.R View File

@@ -29,7 +29,7 @@ db %>%
tbl("trajectoires") %>%
select(Discipline, Subdivision) %>%
distinct %>%
collect(n = Inf) -> villespe
collect -> villespe

villespe %>%
select(Subdivision) %>%
@@ -50,7 +50,7 @@ db %>%
tbl("trajectoires") %>%
select(Etudiant) %>%
distinct %>%
collect(n = Inf) %>%
collect %>%
pull(Etudiant) %>%
max ->
max_rank


Loading…
Cancel
Save