print.rfdata {rgnoisefilt}R Documentation

Print function for class rfdata

Description

This methods displays the basic information about the noise filtering process contained in an object of class rfdata.

Usage

## S3 method for class 'rfdata'
print(x, ...)

Arguments

x

an object of class rfdata.

...

other options to pass to the function.

Details

This function presents the basic information of the regression noise filter and the resulting noisy dataset contained in the object x of class rfdata. The information offered is as follows:

Value

This function does not return any value.

See Also

summary.rfdata, regAENN, regENN, regGE, regEF

Examples

# load the dataset
data(rock)

# apply the regression noise filter
set.seed(9)
output <- regAENN(x = rock[,-ncol(rock)], y = rock[,ncol(rock)])

# print the results
print(output)


[Package rgnoisefilt version 1.1.2 Index]