tadaatoolbox (version 0.17.0)

tadaa_chisq: Tadaa, Chi-Square Test!

Description

A comfortable wrapper of stats::chisq.test with pretty output and effect sizes depending on the size of the contingency table: Phi coefficient and Odds Ratios in case of a 2x2 table, Cramer's V otherwise. The result is either returned as a broom::tidy data.frame or prettified using various pixiedust::sprinkle shenanigans.

Usage

tadaa_chisq(
  data,
  x,
  y,
  correct = TRUE,
  print = c("df", "console", "html", "markdown")
)

Arguments

data

A data.frame.

x

A vector of categorial data (factor or character).

y

Another vector of categorial data (also factor or character).

correct

Apply Yate's continuity correction for 2x2 tables, passed to stats::chisq.test. Defaults to TRUE.

print

Print method, default df: A regular data.frame. Otherwise passed to pixiedust::sprinkle_print_method for fancyness.

Value

A data.frame by default, otherwise dust object, depending on print.

See Also

Other Tadaa-functions: tadaa_aov(), tadaa_kruskal(), tadaa_levene(), tadaa_nom(), tadaa_one_sample(), tadaa_ord(), tadaa_pairwise_tukey(), tadaa_pairwise_t(), tadaa_t.test(), tadaa_wilcoxon()

Examples

Run this code
# NOT RUN {
tadaa_chisq(ngo, abschalt, geschl)

tadaa_chisq(ngo, abschalt, jahrgang)
# }

Run the code above in your browser using DataLab