Learn R Programming

dsos (version 0.1.2)

print.outlier.test: Print frequentist test for no adverse shift.

Description

Print frequentist test for no adverse shift.

Usage

# S3 method for outlier.test
print(x, ...)

Value

Print to screen: display p-value and other information.

Arguments

x

A outlier.test object from a D-SOS test.

...

Placeholder to be compatible with S3 method plot.

See Also

Other s3-method: plot.outlier.bayes(), plot.outlier.test(), print.outlier.bayes()

Examples

Run this code
# \donttest{
set.seed(12345)
os_train <- rnorm(n = 3e2)
os_test <- rnorm(n = 3e2)
test_to_print <- at_from_os(os_train, os_test)
# Also: pt_from_os(os_train, os_test) for permutation test
test_to_print
# }

Run the code above in your browser using DataLab