Skip to content

Commit d9a84c4

Browse files
author
Phillip Doehle
committed
Sort participants by last name
1 parent c9067e3 commit d9a84c4

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

take_attend.R

+2-1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ attendees <- attendees %>%
3737
# full_name column is no longer neded once the comparison is done
3838
attendees <- attendees %>%
3939
mutate( !!ws_day := ifelse(full_name %in% daily_att, T, F)) %>%
40-
select(-full_name)
40+
select(-full_name) %>%
41+
arrange(last)
4142

4243
attendees %>% write_csv(path = args[4])

0 commit comments

Comments
 (0)