We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
What do you think about producing a message if there are missing values in fields supplied other than the by value?
by
dat <- df_adverse_events |> mutate( adverse_event = if_else(patient_id == "ID 1" & adverse_event == "Anaemia", NA, adverse_event), ) dat |> tbl_ae( id = patient_id, ae = adverse_event, soc = system_organ_class, by = grade )
The text was updated successfully, but these errors were encountered:
that is a great idea. it would go in the complete data function?
Sorry, something went wrong.
awesome. yeah that sounds good! i can have a go at this :)
shannonpileggi
Successfully merging a pull request may close this issue.
What do you think about producing a message if there are missing values in fields supplied other than the
by
value?The text was updated successfully, but these errors were encountered: