Description Usage Arguments Value Examples
View source: R/CtsHypothesisTests.R
Runs z-test and outputs graph for interpretation using stats::t.test
1 2 3 4 5 6 7 8 | showT.Test(
group1,
group2 = NULL,
mu = 0,
paired = FALSE,
conf.level = 0.9,
verbose = 1
)
|
group1 |
continuous data to test |
group2 |
optional: second group to include for two sample t-test |
mu |
optional: mean to test against for one-sample t-test |
paired |
boolean, if TRUE perform matched pairs t-test |
conf.level |
confidence level - passed to t.test |
verbose |
default is 1 which will create a graph. To turn this off use verbose = 0. |
results of call to t.test
1 2 3 | x <- rnorm(100)
showT.Test(x, verbose = 0)
showT.Test(x)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.