-
Notifications
You must be signed in to change notification settings - Fork 1
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
feat: ✨ include hba1c criteria #106
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks very nice! I have some questions 😄
data |> | ||
column_names_to_lower() |> | ||
dplyr::filter({{ hba1c_criteria }}) |> | ||
# Keep only the columns we need. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This is the smallest comment ever, but do we want to end inline comments with .
or not?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Hmm, good question. I don't have a strong opinion. I tend to use periods because if there are two sentences, would the second sentence end in a period or not end in one? If it ends in one, it won't match the other comments. But if it doesn't end in one, it seems a bit strange because the previous sentence has a period.
Co-authored-by: Signe Kirk Brødbæk <[email protected]>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
A bit hard to verify at this layer of abstraction without the algorithm in place to run examples, but looks good 👍
I'll merge this in now, since it's had several rounds of reviews |
This function is untested, since it depends on #101. Once that is merged, I'll be able to test these.
The
get_algorithm_logic()
will extract the data from the algorithm csv file, once it is there.Closes #93