
A tidier version of t.test() for two sample tests.
t_test(
x,
formula,
response = NULL,
explanatory = NULL,
order = NULL,
alternative = "two-sided",
mu = 0,
conf_int = TRUE,
conf_level = 0.95,
...
)
A data frame that can be coerced into a tibble.
A formula with the response variable on the left and the explanatory on the right.
The variable name in x
that will serve as the response.
This is alternative to using the formula
argument.
The variable name in x
that will serve as the
explanatory variable.
A string vector of specifying the order in which the levels of
the explanatory variable should be ordered for subtraction, where order = c("first", "second")
means ("first" - "second")
.
Character string giving the direction of the alternative
hypothesis. Options are "two-sided"
(default), "greater"
, or "less"
.
A numeric value giving the hypothesized null mean value for a one sample test and the hypothesized difference for a two sample test.
A logical value for whether to include the confidence
interval or not. TRUE
by default.
A numeric value between 0 and 1. Default value is 0.95.
For passing in other arguments to t.test().
Other wrapper functions:
chisq_stat()
,
chisq_test()
,
observe()
,
prop_test()
,
t_stat()
library(tidyr)
# t test for number of hours worked per week
# by college degree status
gss %>%
tidyr::drop_na(college) %>%
t_test(formula = hours ~ college,
order = c("degree", "no degree"),
alternative = "two-sided")
# see vignette("infer") for more explanation of the
# intuition behind the infer package, and vignette("t_test")
# for more examples of t-tests using infer
Run the code above in your browser using DataLab