wrapTTest.data.frame | R Documentation |
Wrap t.test (difference in means by group).
## S3 method for class 'data.frame'
wrapTTest(
x,
Column1Name,
Column2Name,
...,
y = NULL,
alternative = c("two.sided", "less", "greater"),
mu = 0,
paired = FALSE,
var.equal = FALSE,
conf.level = 0.95,
na.rm = FALSE
)
x |
data.frame |
Column1Name |
character column 1 name |
Column2Name |
character column 2 name |
... |
extra arguments passed to ttest |
y |
passed to |
alternative |
passed to |
mu |
passed to |
paired |
passed to |
var.equal |
passed to |
conf.level |
passed to |
na.rm |
logical, if TRUE remove NA values |
formatted string and fields
d <- data.frame(x=c(1,2,3,4,5,6,7,7),
y=c(1,1,2,2,3,3,4,4))
render(wrapTTest(d,'x','y'),pLargeCutoff=1)
# confirm p not order depedent
render(wrapTTest(d,'y','x'),pLargeCutoff=1)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.