소스 검색

Separate obs and neo

master
Maxime Wack 7 년 전
부모
커밋
53975dfd92
3개의 변경된 파일1879개의 추가작업 그리고 1110개의 파일을 삭제
  1. +1868
    -0
      CMA_Neo.txt
  2. +6
    -1108
      CMA_Obs.txt
  3. +5
    -2
      cim10.R

+ 1868
- 0
CMA_Neo.txt
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


CMA_Obs.txt
파일 크기가 너무 크기때문에 변경 상태를 표시하지 않습니다.
파일 보기


+ 5
- 2
cim10.R 파일 보기

@@ -8,8 +8,11 @@ library(magrittr)
read_csv2("cim10.csv") %>%
mutate(famille_libelle = famille_libelle %>% str_replace("\\w\\d+ ", ""),
CMD_libelle = CMD_libelle %>% str_replace("\\d+ ", "")) %>%
left_join(read_csv("CMA_Gyn.txt", col_names = "code") %>%
mutate(gyn = "O"),
left_join(read_csv("CMA_Neo.txt", col_names = "code") %>%
mutate(neo = "N"),
by = c("diag_code" = "code")) %>%
left_join(read_csv("CMA_Obs.txt", col_names = "code") %>%
mutate(obs = "O"),
by = c("diag_code" = "code")) -> cim10

# groupes ----------


불러오는 중...
취소
저장