-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Description of icd_parse() #21
Comments
Thank you, the documentation is incorrect here. To get the normcode or other attributes, you can join with ICD10gm::icd_parse(c(
"Backpain (M54.9) is one of the most common diagnoses in primary care",
"Codes for chronic pain include R52.1 and F45.4"
))%>%
left_join(
ICD10gm::icd_meta_codes %>%
filter(year == 2021) %>%
select(icd_sub, icd_normcode, label),
by = c("icd_sub")) I will correct for the next release. |
So icd_spec that is an output of icd_parse is not icd_norm? |
Yes, The It might be a good idea to include the |
Hi
I think there is an issue in the description of the icd_parse() function.
It is described that there is an output of icd_norm but in the icd_parse() function there is one called icd_spec that is the same as icd_norm. Or am i wrong here.
The text was updated successfully, but these errors were encountered: