print.rfdata | R Documentation |
This methods displays the basic information about the noise
filtering process contained in an object of class rfdata
.
## S3 method for class 'rfdata'
print(x, ...)
x |
an object of class |
... |
other options to pass to the function. |
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.
This function does not return any value.
summary.rfdata
, regAENN
, regENN
, regGE
, regEF
# 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)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.