chisq_test: Tidy chi-squared test

Description Usage Arguments Examples

View source: R/wrappers.R

Description

A tidier version of chisq.test() for goodness of fit tests and tests of independence.

Usage

1

Arguments

data

A data frame that can be coerced into a tibble.

formula

A formula with the response variable on the left and the explanatory on the right.

...

Additional arguments for chisq.test().

Examples

1
2
3
4
# chisq test for comparing number of cylinders against automatic/manual
mtcars %>%
  dplyr::mutate(cyl = factor(cyl), am = factor(am)) %>%
  chisq_test(cyl ~ am)

andrewpbray/infer documentation built on Aug. 29, 2019, 5:57 a.m.