Skip to content
Snippets Groups Projects
Verified Commit 73ad072d authored by Laurent Modolo's avatar Laurent Modolo
Browse files

add forms folder, with mail template and select_trainee.R script for futur sessions

parent 68a83da0
No related branches found
No related tags found
3 merge requests!6Switch to main as default branch,!4update contributing,!3Carine dev
Dear all,
You are registered for the first session of the R formation: R the basis organized by the CAN.
This formation will be given once a week for 10 consecutive weeks on Mondays from 11h to 12h30.
If you are not available anymore please let me know by replying to this email.
The first session will be Monday 20/09 in the Salle de TP du CBP.
All the support will be in English but the course itself will be in French.
You will receive another email will all the necessary technical information during the week.
Best,
Dear all,
===
You are registered for the first session of the R formation: R the basis organized by the CAN.
This formation will be given once a week for 10 consecutive weeks on Tuesdays from 11h to 12h30.
If you are not available anymore please let me know by replying to this email.
The first session will be Tuesday 14/09 in the Salle de TP du CBP.
All the support will be in English but the course itself will be in French.
You will receive another email will all the necessary technical information during the week.
Best,
===
Dear all,
You are registered for the first session of the R formation: R the basis organized by the CAN.
This formation will be given once a week for 10 consecutive weeks on Fridays from 11h to 12h30.
If you are not available anymore please let me know by replying to this email.
The first session will be Friday 17/09 in the Salle de TP du CBP.
All the support will be in English but the course itself will be in French.
You will receive another email will all the necessary technical information during the week.
Best,
library(tidyverse)
banned <- c(
"marine.villard01@chu-lyon.fr"
)
days <- c("monday_11h_12h30", "tuesday_11h_12h30", "friday_11h_12h30")
for( day in days) {
read_tsv("trainee.tsv", skip = 2) %>%
janitor::clean_names() %>%
filter(!(email %in% banned)) %>%
select(c(
sequentiel, email, lab,
monday_11h_12h30, tuesday_11h_12h30, friday_11h_12h30,
comments)) %>%
filter(!duplicated(email)) %>%
filter(
.[[day]] %in% "first choice"
) %>%
select(c(
email)) %>%
write_csv(str_c(day, ".csv"))
}
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment