博文

目前显示的是 十月, 2023的博文

计算年龄且分组

 df <- read.csv(windows_to_wsl_path('C:\\Users\\xuefeng\\Desktop\\个案.csv'),fileEncoding = "GB18030") %>%    clean_names() %>%    filter(ym_mc=='麻腮风疫苗') df %>%    separate(jz_sj, into = c("jz_sj", "rest"), sep = "\\s+", extra = "drop") %>%    mutate(jz_sj=ymd(jz_sj),csrq=ymd(csrq)) %>%    mutate(age = as.numeric(difftime(jz_sj, csrq, units = "days")/365)) %>%    filter(age<10 & age>0 & jz_zc<=2) %>%    mutate(jz_grp = case_when(     year(jz_sj) == 2018 ~ "2018",     year(jz_sj) == 2019 ~ "2019",     year(jz_sj) == 2020 & month(jz_sj) <= 5 ~ "2020(1-5月)",     year(jz_sj) == 2020 & month(jz_sj) >= 6 ~ "2020(6-12月)",     year(jz_sj) == 2021 ~ "2021",     year(jz_sj) == 2022 ~ "2022",     TRUE ~ "其他")) -> test df=pd.read_csv(windows_to_wsl_path( r "C: \U sers \x uefeng\Desktop \个 案.csv