This method displays the basic information about the noise
introduction process contained in an object of class ndmodel.
Usage
# S3 method for ndmodel
print(x, ...)
Value
This function does not return any value.
Arguments
x
an object of class ndmodel.
...
other options to pass to the function.
Details
This function presents the basic information of the noise introduction process and the resulting noisy dataset contained in the object x of class ndmodel.
The information offered is as follows:
the name of the noise introduction model.
the parameters associated with the noise model.
the number of noisy and clean samples in the dataset.
# load the datasetdata(iris2D)
# usage of the default methodset.seed(9)
outdef <- sym_uni_ln(x = iris2D[,-ncol(iris2D)], y = iris2D[,ncol(iris2D)], level = 0.1)
# show resultsprint(outdef)