mirror of
https://github.com/msberends/AMR.git
synced 2025-07-08 15:21:58 +02:00
fix for binding rows
This commit is contained in:
@ -404,8 +404,8 @@ antibiogram <- function(x,
|
||||
if (i == 1) {
|
||||
new_df <- long_to_wide(out[which(out$syndromic_group == grp), , drop = FALSE], digs = digits)
|
||||
} else {
|
||||
new_df <- pm_bind_rows(new_df,
|
||||
long_to_wide(out[which(out$syndromic_group == grp), , drop = FALSE], digs = digits))
|
||||
new_df <- rbind2(new_df,
|
||||
long_to_wide(out[which(out$syndromic_group == grp), , drop = FALSE], digs = digits))
|
||||
}
|
||||
}
|
||||
# sort rows
|
||||
|
Reference in New Issue
Block a user