View source: R/NearestNeigbour.R
C.FRNN.FRST | R Documentation |
It is used to predict new datasets/patterns based on the fuzzy-rough nearest neighbor algorithm (FRNN) proposed by (Jensen and Cornelis, 2011).
C.FRNN.FRST(decision.table, newdata, control = list())
decision.table |
a |
newdata |
a See |
control |
a list of other parameters as follows.
|
This method uses the fuzzy lower and upper approximations to improve the fuzzy nearest neighbor (FNN) algorithm.
This algorithm assigns a class to a target instance t
as follows.
Determine k
nearest neighbors considering their similarity to new patterns.
Assign new patterns to the class based on maximal value of fuzzy lower and upper approximations.
If a value of fuzzy lower approximation is high, it shows that neighbors of newdata belong to a particular class, e.g. C
. On the other hand,
a high value of fuzzy upper approximation means that at least one neighbor belongs to that class.
In this function, we provide two approaches based on types of fuzzy lower and upper approximations. The following is a list of the considered approximations:
"implicator.tnorm"
: It refers to lower and upper approximations based on implicator/t-norm approach.
For more detail, it can be seen in BC.LU.approximation.FRST
. When using this approach,
we need to assign the control
parameter as follows:
control <- list(type.LU = "implicator.tnorm", k,
type.aggregation, type.relation, t.implicator)
The detailed description of the components in the control
parameter can be seen in
BC.LU.approximation.FRST
.
"vqrs"
: It refers to lower and upper approximations based on vaguely quantified rough sets.
For more detail, it can be seen in BC.LU.approximation.FRST
. When using this approach,
we need to assign the control
parameter as follows:
control <- list(type.LU = "vqrs", k, q.some, q.most,
type.relation, type.aggregation)
The detailed description of the components in the control
parameter can be seen in
BC.LU.approximation.FRST
.
A matrix of predicted classes of newdata.
Lala Septem Riza
R. Jensen and C. Cornelis, "Fuzzy-rough Nearest Neighbour Classification and Prediction", Theoretical Computer Science, vol. 412, p. 5871 - 5884 (2011).
C.FRNN.O.FRST
,
C.POSNN.FRST
#############################################################
## In this example, we are using Iris dataset.
## It should be noted that since the values of the decision attribute are strings,
## they should be transformed into numeric values using unclass()
#############################################################
data(iris)
## shuffle the data
set.seed(2)
irisShuffled <- iris[sample(nrow(iris)),]
## transform values of the decision attribute into numerics
irisShuffled[,5] <- unclass(irisShuffled[,5])
## split the data into training and testing data
iris.training <- irisShuffled[1:105,]
iris.testing <- irisShuffled[106:nrow(irisShuffled),1:4]
colnames(iris.training) <- c("Sepal.Length", "Sepal.Width", "Petal.Length",
"Petal.Width", "Species")
## convert into a standard decision table
decision.table <- SF.asDecisionTable(dataset = iris.training, decision.attr = 5,
indx.nominal = c(5))
tst.iris <- SF.asDecisionTable(dataset = iris.testing)
###### FRNN algorithm using lower/upper approximation:
###### Implicator/tnorm based approach
control <- list(type.LU = "implicator.tnorm", k = 20,
type.aggregation = c("t.tnorm", "lukasiewicz"),
type.relation = c("tolerance", "eq.1"), t.implicator = "lukasiewicz")
## Not run: res.1 <- C.FRNN.FRST(decision.table = decision.table, newdata = tst.iris,
control = control)
## End(Not run)
###### FRNN algorithm using VQRS
control <- list(type.LU = "vqrs", k = 20, q.some = c(0.1, 0.6), q.most = c(0.2, 1),
type.relation = c("tolerance", "eq.1"),
type.aggregation = c("t.tnorm","lukasiewicz"))
## Not run: res.2 <- C.FRNN.FRST(decision.table = decision.table, newdata = tst.iris,
control = control)
## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.