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 |
... |
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:
the name of the regression noise filter.
the parameters associated with the noise filter.
the number of noisy and clean samples in the dataset.
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]