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
This will be helpful because Roche often wants to report the number non missing at the top.
This would be included in either the brdg_() function or even a pier_*().
brdg_()
pier_*()
The text was updated successfully, but these errors were encountered:
This would be a precursor to making it simpler to get a table like the one below that is common at Roche.
library(gtsummary) trial |> tbl_summary( include = c(response, grade, age), type = list(c(response, grade) ~ "categorical", age ~ "continuous2"), missing = "always", missing_stat = "{N_nonmiss}", missing_text = "n" ) |> modify_table_body( function(.x) .x |> mutate( .by = variable, across(everything(), ~.[order(row_type != "label", row_type != "missing")]) ) ) |> bold_labels() |> as_kable()
Created on 2024-09-05 with reprex v2.1.0
Sorry, something went wrong.
Added a function to do this directly here: https://insightsengineering.github.io/crane/reference/tbl_demographics.html
No branches or pull requests
This will be helpful because Roche often wants to report the number non missing at the top.
This would be included in either the
brdg_()
function or even apier_*()
.The text was updated successfully, but these errors were encountered: