Skip to content

Commit

Permalink
docs:maj liste a transmettre ps
Browse files Browse the repository at this point in the history
  • Loading branch information
arnaudmilet committed Dec 16, 2024
1 parent 558fcb8 commit 80281d0
Showing 1 changed file with 48 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
# pb coté ps ----
parcoursup_2024_renseigne_pas_ij_pas_isup_et_ij %>%
filter(Couverture == "Non couvert") %>%
filter(!Nouvelle_formation) %>%
Expand All @@ -23,7 +24,54 @@ parcoursup_2024_renseigne_pas_ij_pas_isup_et_ij %>%
) %>%
mutate(commentaire="Attention code formation") %>%
distinct(CODEFORMATIONACCUEIL,commentaire)
) %>%
left_join(
parcoursup_campagne_2024,
by="CODEFORMATIONACCUEIL"
) %>%
mutate(
`Type diplôme`=case_when(
str_sub(LIBFORMATION,1,2)=="LP"~"Licence professionnelle",
str_sub(LIBFORMATION,1,7)=="Licence"~"Licence générale",
T~LIBFORMATION
)
) %>%
left_join(
correspondance_formation_certificateur %>%
mutate(Filiere=ifelse(Filiere=="Sco.","Scolaire","Apprentissage")),
by=c("Type diplôme","APPRENTISSAGEOUSCOLAIRE"="Filiere")
) %>%
filter(`Scope campagne 2025`=="Oui") %>%
clipr::write_clip()

# pb coté ssm ----

parcoursup_2024_renseigne_pas_ij_pas_isup_et_ij %>%
filter(Couverture == "Non couvert") %>%
filter(!Nouvelle_formation) %>%
filter(type_territoire=="Territoire normalement couvert") %>%
select(CODEFORMATIONACCUEIL,type_uai,presence_UAI_ACCE,presence_Code_Scolarité_certif_info) %>%
mutate(
commentaire=case_when(
presence_UAI_ACCE & presence_Code_Scolarité_certif_info~"Ok PS",
presence_UAI_ACCE ~"Attention code formation",
presence_Code_Scolarité_certif_info ~"Attention code uai",
T~"Attention code formation & uai"
)
) %>%
filter(commentaire=="Ok PS") %>%
distinct(CODEFORMATIONACCUEIL,commentaire) %>%
bind_rows(
parcoursup_campagne_2024_sup_a_transmettre_PS %>%
filter(!`Couverture avec code SISE retenu` %in% c("Couvert","Sous les seuils")) %>%
inner_join(
n_diplome_sise %>%
distinct(DIPLOME_SISE),
by=c("Code SISE retenu"="DIPLOME_SISE")
) %>%
mutate(commentaire="Ok PS") %>%
distinct(CODEFORMATIONACCUEIL,commentaire)
) %>%
left_join(
parcoursup_campagne_2024,
by="CODEFORMATIONACCUEIL"
Expand Down

0 comments on commit 80281d0

Please sign in to comment.