print.indtest {semidist} | R Documentation |
Print Method for Independence Tests Between Categorical and Continuous Variables
Description
Printing object of class "indtest"
, by simple print method.
Usage
## S3 method for class 'indtest'
print(x, digits = getOption("digits"), ...)
Arguments
x |
|
digits |
minimal number of significant digits. |
... |
further arguments passed to or from other methods. |
Value
None
Examples
# Man-made functionally dependent data --------------------------------------
n <- 30; R <- 3
x <- rep(0, n)
x[1:10] <- 0.3; x[11:20] <- 0.2; x[21:30] <- -0.1
y <- factor(rep(1:3, each = 10))
test <- mv_test(x, y)
print(test)
test_asym <- mv_test(x, y, test_type = "asym")
print(test_asym)
[Package semidist version 0.1.0 Index]