inscsf {inaparc} | R Documentation |
Initialization cluster prototypes using Inscsf algorithm
Description
Initializes cluster prototypes with Inscsf
which is a novel prototype initialization algorithm using a selected central tendency measure of a selected feature. For reducing the computational complexity and increasing the accuracy in initialization, the algorithm works on only one feature which can be selected according to its importance in clustering. Furthermore, with a selection mechanism using the distribution of data the algorithm also automatically decides what type of center measure should be used.
Usage
inscsf(x, k, sfidx, ctype)
Arguments
x |
a numeric vector, data frame or matrix. |
k |
an integer specifying the number of clusters. |
sfidx |
an integer specifying the column index of the selected feature. If missing, it is internally determined by comparing the number of unique values for all the features in the data set. The feature having the maximum number of unique values is used as the selected feature. |
ctype |
a string for the type of the selected center. The options are ‘avg’ for average, ‘med’ for median or ‘mod’ for mode. The default value is ‘avg’. |
Details
The inscsf
is based on a technique so-called "initialization using a selected center of a selected feature". It resembles Ball and Hall's method (Ball and Hall, 1967) for assignment of the first cluster prototype but it differs by the use of two different interval values (R_1
and R_2
) instead of using only one fixed threshold value (T) for determining the prototypes of remaining clusters. The technique inscsf
does not require to sort the data set. R_1
is an interval which is calculated by dividing the distance between the center and maximum of the selected feature (x_f
) by half of the number of clusters minus 1.
R_1=\frac{max(x_f)-center(x_f)}{(c-1)/2}
Similarly, R_2
is an interval which is calculated by dividing the distance between the maximum and center of the selected feature by half of the number of clusters minus 1.
R_2=\frac{center(x_f)-min(x_f)}{(k-1)/2}
These two intervals become equal to each other if the selected feature is normally distributed, and thus, cluster prototypes are located in equidistant positions from each other in the p-dimensional space of n data objects.
Depending on the distribution of selected feature, the mean, median or mode of the selected feature can be used to determine the prototype of first cluster. If the type of center measure is not input by the user, it is internally determined according to the distribution of data. Then, the nearest data instance to the center of the selected feature is searched on the selected feature column, and assigned as the prototype of first cluster.
v_1=x_i ; i = row \;index \;of \;the \;nearest \;data \;object \;to \;center(x_f))
The prototype of an even-numbered cluster is determined by adding the value of R_1
times the cluster index minus 1 to the first cluster prototype.
v_j={(x_{(i+(j-1)}\;R_1)}
On the other hand, R_2
is used to calculate the prototypes for the odd-numbered clusters.
v_j={(x_{(i+(j-1)}\; R_2)}
Value
an object of class ‘inaparc’, which is a list consists of the following items:
v |
a numeric matrix containing the initial cluster prototypes. |
sfidx |
an integer for the column index of the selected feature. |
ctype |
a string for the type of centroid. It is ‘obj’ with this function because the prototypes matrix contain contains the selected objects. |
call |
a string containing the matched function call that generates this ‘inaparc’ object. |
Note
The selected feature can be determined in several ways. The feature with highest number of peaks among the others can be also utilized as the selected feature with this function. For determination of it, the function findpolypeaks
of the package ‘kpeaks’ can be used.
Author(s)
Zeynel Cebeci, Cagatay Cebeci
References
Ball, G.H. & Hall, D.J. (1967). A clustering technique for summarizing multivariate data, Systems Res. & Behavioral Sci., 12 (2): 153-155.
Cebeci, Z., Sahin, M. & Cebeci, C. (2018). Data dependent techniques for initialization of cluster prototypes in partitioning cluster analysis. In Proc. of 4th International Conference on Engineering and Natural Science, Kiev, Ukraine, May 2018. pp. 12-22.
See Also
aldaoud
,
ballhall
,
crsamp
,
firstk
,
forgy
,
hartiganwong
,
inofrep
,
insdev
,
kkz
,
kmpp
,
ksegments
,
ksteps
,
lastk
,
lhsmaximin
,
lhsrandom
,
maximin
,
mscseek
,
rsamp
,
rsegment
,
scseek
,
scseek2
,
spaeth
,
ssamp
,
topbottom
,
uniquek
,
ursamp
Examples
data(iris)
# Use the 4th feature as the selected feature
v1 <- inscsf(x=iris[,1:4], k=5, sfidx=4)$v
print(v1)
# Use the internally selected feature
v2 <- inscsf(x=iris[,1:4], k=5)$v
print(v2)