Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R_basis
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CAN
R_basis
Commits
73ad072d
Verified
Commit
73ad072d
authored
3 years ago
by
Laurent Modolo
Browse files
Options
Downloads
Patches
Plain Diff
add forms folder, with mail template and select_trainee.R script for futur sessions
parent
68a83da0
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
forms/1_mail.txt
+45
-0
45 additions, 0 deletions
forms/1_mail.txt
forms/select_trainee.R
+23
-0
23 additions, 0 deletions
forms/select_trainee.R
with
68 additions
and
0 deletions
forms/1_mail.txt
0 → 100644
+
45
−
0
View file @
73ad072d
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,
This diff is collapsed.
Click to expand it.
forms/select_trainee.R
0 → 100644
+
23
−
0
View file @
73ad072d
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"
))
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment