gitextract_nyyro61y/ ├── .Rbuildignore ├── .dev/ │ ├── _BENCHMARK_RESHAPE.R │ ├── html5.R │ ├── revdepcheck.R │ ├── test-value_at.R │ └── value_at.R ├── .git-blame-ignore-revs ├── .github/ │ ├── .gitignore │ ├── CODE_OF_CONDUCT.md │ ├── CONTRIBUTING.md │ ├── FUNDING.yml │ ├── SUPPORT.md │ ├── dependabot.yaml │ └── workflows/ │ ├── R-CMD-check-hard.yaml │ ├── R-CMD-check.yaml │ ├── check-all-examples.yaml │ ├── check-link-rot.yaml │ ├── check-random-test-order.yaml │ ├── check-readme.yaml │ ├── check-spelling.yaml │ ├── check-styling.yaml │ ├── check-test-warnings.yaml │ ├── check-vignette-warnings.yaml │ ├── html-5-check.yaml │ ├── lint-changed-files.yaml │ ├── lint.yaml │ ├── pkgdown-no-suggests.yaml │ ├── pkgdown.yaml │ ├── test-coverage-examples.yaml │ ├── test-coverage.yaml │ └── update-to-latest-easystats.yaml ├── .gitignore ├── .lintr ├── DESCRIPTION ├── LICENSE ├── LICENSE.md ├── NAMESPACE ├── NEWS.md ├── R/ │ ├── adjust.R │ ├── assign_labels.R │ ├── categorize.R │ ├── center.R │ ├── contrs.R │ ├── convert_na_to.R │ ├── convert_to_na.R │ ├── data.R │ ├── data_addprefix.R │ ├── data_arrange.R │ ├── data_codebook.R │ ├── data_duplicated.R │ ├── data_extract.R │ ├── data_group.R │ ├── data_match.R │ ├── data_merge.R │ ├── data_modify.R │ ├── data_partition.R │ ├── data_peek.R │ ├── data_read.R │ ├── data_relocate.R │ ├── data_remove.R │ ├── data_rename.R │ ├── data_replicate.R │ ├── data_rescale.R │ ├── data_restoretype.R │ ├── data_reverse.R │ ├── data_rotate.R │ ├── data_seek.R │ ├── data_select.R │ ├── data_separate.R │ ├── data_summary.R │ ├── data_tabulate.R │ ├── data_to_long.R │ ├── data_to_wide.R │ ├── data_unique.R │ ├── data_unite.R │ ├── data_write.R │ ├── data_xtabulate.R │ ├── datawizard-package.R │ ├── demean.R │ ├── describe_distribution.R │ ├── descriptives.R │ ├── extract_column_names.R │ ├── format.R │ ├── labels_to_levels.R │ ├── makepredictcall.R │ ├── mean_sd.R │ ├── means_by_group.R │ ├── normalize.R │ ├── ranktransform.R │ ├── recode_into.R │ ├── recode_values.R │ ├── remove_empty.R │ ├── replace_nan_inf.R │ ├── rescale_weights.R │ ├── reshape_ci.R │ ├── row_count.R │ ├── row_means.R │ ├── select_nse.R │ ├── skewness_kurtosis.R │ ├── slide.R │ ├── smoothness.R │ ├── standardize.R │ ├── standardize.models.R │ ├── text_format.R │ ├── to_factor.R │ ├── to_numeric.R │ ├── unnormalize.R │ ├── unstandardize.R │ ├── utils-cols.R │ ├── utils-rows.R │ ├── utils.R │ ├── utils_labels.R │ ├── utils_standardize_center.R │ ├── visualisation_recipe.R │ ├── weighted_mean_median_sd_mad.R │ └── winsorize.R ├── README.Rmd ├── README.md ├── air.toml ├── cran-comments.md ├── data/ │ ├── efc.RData │ └── nhanes_sample.RData ├── datawizard.Rproj ├── datawizard.code-workspace ├── inst/ │ ├── CITATION │ └── WORDLIST ├── man/ │ ├── adjust.Rd │ ├── as.prop.table.Rd │ ├── assign_labels.Rd │ ├── categorize.Rd │ ├── center.Rd │ ├── coef_var.Rd │ ├── coerce_to_numeric.Rd │ ├── colnames.Rd │ ├── contr.deviation.Rd │ ├── convert_na_to.Rd │ ├── convert_to_na.Rd │ ├── data_arrange.Rd │ ├── data_codebook.Rd │ ├── data_duplicated.Rd │ ├── data_extract.Rd │ ├── data_group.Rd │ ├── data_match.Rd │ ├── data_merge.Rd │ ├── data_modify.Rd │ ├── data_partition.Rd │ ├── data_peek.Rd │ ├── data_prefix_suffix.Rd │ ├── data_read.Rd │ ├── data_relocate.Rd │ ├── data_rename.Rd │ ├── data_replicate.Rd │ ├── data_restoretype.Rd │ ├── data_rotate.Rd │ ├── data_seek.Rd │ ├── data_separate.Rd │ ├── data_summary.Rd │ ├── data_tabulate.Rd │ ├── data_to_long.Rd │ ├── data_to_wide.Rd │ ├── data_unique.Rd │ ├── data_unite.Rd │ ├── datawizard-package.Rd │ ├── demean.Rd │ ├── describe_distribution.Rd │ ├── distribution_mode.Rd │ ├── efc.Rd │ ├── extract_column_names.Rd │ ├── labels_to_levels.Rd │ ├── makepredictcall.dw_transformer.Rd │ ├── mean_sd.Rd │ ├── means_by_group.Rd │ ├── nhanes_sample.Rd │ ├── normalize.Rd │ ├── ranktransform.Rd │ ├── recode_into.Rd │ ├── recode_values.Rd │ ├── reexports.Rd │ ├── remove_empty.Rd │ ├── replace_nan_inf.Rd │ ├── rescale.Rd │ ├── rescale_weights.Rd │ ├── reshape_ci.Rd │ ├── reverse.Rd │ ├── row_count.Rd │ ├── row_means.Rd │ ├── rownames.Rd │ ├── skewness.Rd │ ├── slide.Rd │ ├── smoothness.Rd │ ├── standardize.Rd │ ├── standardize.default.Rd │ ├── text_format.Rd │ ├── to_factor.Rd │ ├── to_numeric.Rd │ ├── visualisation_recipe.Rd │ ├── weighted_mean.Rd │ └── winsorize.Rd ├── paper/ │ └── JOSS_files/ │ ├── apa.csl │ ├── paper.Rmd │ ├── paper.bib │ ├── paper.log │ └── paper.md ├── pkgdown/ │ └── _pkgdown.yaml ├── tests/ │ ├── testthat/ │ │ ├── _snaps/ │ │ │ ├── categorize.md │ │ │ ├── contr.deviation.md │ │ │ ├── data_codebook.md │ │ │ ├── data_modify.md │ │ │ ├── data_partition.md │ │ │ ├── data_peek.md │ │ │ ├── data_read.md │ │ │ ├── data_rescale.md │ │ │ ├── data_seek.md │ │ │ ├── data_separate.md │ │ │ ├── data_summary.md │ │ │ ├── data_tabulate.md │ │ │ ├── data_to_factor.md │ │ │ ├── data_to_long.md │ │ │ ├── data_to_numeric.md │ │ │ ├── demean.md │ │ │ ├── describe_distribution.md │ │ │ ├── empty-dataframe.md │ │ │ ├── means_by_group.md │ │ │ ├── normalize.md │ │ │ ├── print.dw_transformer.md │ │ │ ├── ranktransform.md │ │ │ ├── rescale_weights.md │ │ │ ├── reshape_ci.md │ │ │ ├── skewness-kurtosis.md │ │ │ ├── smoothness.md │ │ │ ├── text_format.md │ │ │ ├── windows/ │ │ │ │ └── means_by_group.md │ │ │ └── winsorization.md │ │ ├── helper-state.R │ │ ├── helper.R │ │ ├── test-adjust.R │ │ ├── test-assign_labels.R │ │ ├── test-attributes-grouped-df.R │ │ ├── test-attributes.R │ │ ├── test-categorize.R │ │ ├── test-center.R │ │ ├── test-coef_var.R │ │ ├── test-contr.deviation.R │ │ ├── test-convert_na_to.R │ │ ├── test-convert_to_na.R │ │ ├── test-data_addprefix.R │ │ ├── test-data_arrange.R │ │ ├── test-data_codebook.R │ │ ├── test-data_duplicated.R │ │ ├── test-data_extract.R │ │ ├── test-data_group.R │ │ ├── test-data_match.R │ │ ├── test-data_merge.R │ │ ├── test-data_modify.R │ │ ├── test-data_partition.R │ │ ├── test-data_peek.R │ │ ├── test-data_read.R │ │ ├── test-data_recode.R │ │ ├── test-data_relocate.R │ │ ├── test-data_remove.R │ │ ├── test-data_rename.R │ │ ├── test-data_reorder.R │ │ ├── test-data_replicate.R │ │ ├── test-data_rescale.R │ │ ├── test-data_restoretype.R │ │ ├── test-data_reverse.R │ │ ├── test-data_rotate.R │ │ ├── test-data_seek.R │ │ ├── test-data_select.R │ │ ├── test-data_separate.R │ │ ├── test-data_shift.R │ │ ├── test-data_summary.R │ │ ├── test-data_tabulate.R │ │ ├── test-data_to_factor.R │ │ ├── test-data_to_long.R │ │ ├── test-data_to_numeric.R │ │ ├── test-data_to_wide.R │ │ ├── test-data_unique.R │ │ ├── test-data_unite.R │ │ ├── test-data_write.R │ │ ├── test-demean.R │ │ ├── test-describe_distribution.R │ │ ├── test-distributions.R │ │ ├── test-empty-dataframe.R │ │ ├── test-extract_column_names.R │ │ ├── test-labelled_data.R │ │ ├── test-labels_to_levels.R │ │ ├── test-makepredictcall.R │ │ ├── test-mean_sd.R │ │ ├── test-means_by_group.R │ │ ├── test-normalize.R │ │ ├── test-print.dw_transformer.R │ │ ├── test-ranktransform.R │ │ ├── test-recode_into.R │ │ ├── test-replace_nan_inf.R │ │ ├── test-rescale_weights.R │ │ ├── test-reshape_ci.R │ │ ├── test-row_count.R │ │ ├── test-row_means.R │ │ ├── test-select_nse.R │ │ ├── test-skewness-kurtosis.R │ │ ├── test-smoothness.R │ │ ├── test-standardize-data.R │ │ ├── test-standardize_datagrid.R │ │ ├── test-standardize_models.R │ │ ├── test-std_center.R │ │ ├── test-std_center_scale_args.R │ │ ├── test-text_format.R │ │ ├── test-unnormalize.R │ │ ├── test-utils.R │ │ ├── test-utils_cols.R │ │ ├── test-utils_rows.R │ │ ├── test-weighted-stats.R │ │ └── test-winsorization.R │ └── testthat.R └── vignettes/ ├── .gitignore ├── bibliography.bib ├── overview_of_vignettes.Rmd ├── selection_syntax.Rmd ├── standardize_data.Rmd └── tidyverse_translation.Rmd