gtsummary
gtsummary copied to clipboard
Bug when merging `tbl_summary()` with `tbl_svysummary()`
Check out this SO issue for details: https://stackoverflow.com/questions/78323493
The problem is that survey N is a double and non-survey N is an integer, and they cannot be mixed upon merging.
I think we could use match()
instead of dplyr::rows_update()
, which requires type matching.
👍
Perhaps the most general solution to this issue would be to make the column a list column?