| htest {rapportools} | R Documentation |
This function uses htest.short, to extract
statistic and p-value from htest-classed object.
Main advantage of using htest is that it's
vectorised, and can accept multiple methods.
htest(x, ..., use.labels = getOption("rapport.use.labels"),
use.method.names = TRUE, colnames = c("Method", "Statistic", "p-value"))
x |
arguments to be passed to function specified in
|
... |
additional arguments for function specified in
|
use.labels |
a logical value indicating whether
variable labels should be placed in row names. If set to
|
use.method.names |
use the string provided in
|
colnames |
a character string containing column names |
Default parameters are read from options:
'rapport.use.labels'.
a data.frame with applied tests in rows, and their
results (statistic and p-value) in columns
## Not run: library(nortest) htest(rnorm(100), shapiro.test) htest(rnorm(100), lillie.test, ad.test, shapiro.test) htest(mtcars, lillie.test) htest(mtcars, lillie.test, ad.test, shapiro.test) ## End(Not run)