Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Feb 13, 2024
1 parent d2fd1e2 commit 2c594b4
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion R/data_tabulate.R
Original file line number Diff line number Diff line change
Expand Up @@ -99,7 +99,16 @@ data_tabulate.default <- function(x,
# we go into another function for crosstables here...
if (!is.null(by)) {
by <- .validate_by(by, x)
return(.crosstable(x, by, weights, proportions, obj_name, group_variable, ...))
return(.crosstable(
x,
by = by,
weights = weights,
include_na = include_na,
proportions = proportions,
obj_name = obj_name,
group_variable = group_variable,
...
))
}

# frequency table
Expand Down

0 comments on commit 2c594b4

Please sign in to comment.