test_chisq_two {uxr} | R Documentation |
Chi-squared Two Sample
Description
Chi-squared Two Sample
Usage
test_chisq_two(data, x, y)
Arguments
data |
data |
x |
x |
y |
y |
Value
results
Examples
data <- tibble::tribble(~fruit, ~count,
"Apple" , 29,
"Banana" , 24,
"Cucumber" , 22,
"Dragon Fruit" , 19
)
data <- data |>
tidyr::uncount(weights = count) |>
tibble::rowid_to_column("id")
test_chisq_one(data, fruit)
[Package uxr version 0.2.0 Index]