Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
strengejacke committed Jun 22, 2024
1 parent bab9a67 commit cf6b6a3
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 6 deletions.
4 changes: 2 additions & 2 deletions NAMESPACE
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
# Generated by roxygen2: do not edit by hand

S3method(as.data.frame,dw_data_tabulates)
S3method(as.data.frame,dw_data_xtabulate)
S3method(as.double,parameters_kurtosis)
S3method(as.double,parameters_skewness)
S3method(as.double,parameters_smoothness)
Expand Down Expand Up @@ -227,8 +229,6 @@ export(column_as_rownames)
export(contr.deviation)
export(convert_na_to)
export(convert_to_na)
export(data.frame.dw_data_tabulates)
export(data.frame.dw_data_xtabulate)
export(data_addprefix)
export(data_addsuffix)
export(data_adjust)
Expand Down
4 changes: 2 additions & 2 deletions R/data_tabulate.R
Original file line number Diff line number Diff line change
Expand Up @@ -383,7 +383,7 @@ insight::print_md

#' @rdname data_tabulate
#' @export
data.frame.dw_data_tabulates <- function(x, add_total = FALSE, ...) {
as.data.frame.dw_data_tabulates <- function(x, add_total = FALSE, ...) {
# extract variables of frequencies
selected_vars <- lapply(x, function(i) attributes(i)$varname)
# coerce to data frame, remove rownames
Expand All @@ -409,7 +409,7 @@ data.frame.dw_data_tabulates <- function(x, add_total = FALSE, ...) {
}

#' @export
data.frame.dw_data_xtabulate <- data.frame.dw_data_tabulates
as.data.frame.dw_data_xtabulate <- as.data.frame.dw_data_tabulates


#' @export
Expand Down
4 changes: 2 additions & 2 deletions man/data_tabulate.Rd

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit cf6b6a3

Please sign in to comment.