This vignette is designed to be used with the 'ppclust
' package. You can download the recent version of the package from CRAN with the following command:
install.packages("ppclust")
If you have already installed 'ppclust
', you can load it into R working environment by using the following command:
library(ppclust)
For visualization of the clustering results, some examples in this vignette use the functions from some cluster analysis packages such as 'cluster
', 'fclust
' and 'factoextra
'. Therefore, these packages should be loaded into R working environment with the following commands:
library(factoextra) library(cluster) library(fclust)
We demonstrate UPFC on the Iris data set (Anderson, 1935). It is a real data set of the four features (Sepal.Length, Sepal.Width, Petal.Length and Petal.Width) of three species (in the last column as the class variable). This four-dimensional data set contains totally 150 observations as 50 samples from each of three iris species. One of these three natural clusters (Class 1) is linearly well-separated from the other two clusters, while Classes 2 and 3 have some overlap as seen in the plot below.
data(iris) x=iris[,-5] x
Plot the data by the classes of iris species
pairs(x, col=iris[,5])
Unsupervised Possibilistic Fuzzy C-Means (UPFC) is an extension of Possibilistic Clustering Algorithm (PCA) by Yang & Wu (2006). Wu et al (2010) reported that PCA is very sensitive to initializations and sometimes generates coincident clusters. They proposed the algorithm UPFC to overcome this problem with inspiration by Pal et al's PFCM algorithm (Pal et al, 2005). The algorithm UPFC produces both possibilistic and probabilistic memberships simultaneously, and overcomes the noise sensitivity problem of FCM and the coincident clusters problem of PCA.
In order to start UPFC, an initialization step is required to build the initial cluster prototypes matrix and fuzzy membership degrees matrix. Although this task is usually performed in the initialization step of the clustering algorithm, the initial prototypes and memberships can also be directly input by the user.
UPFC is usually started by using an integer specifying the number of clusters. In this case, the prototypes matrix is internally generated by using any of the prototype initalization algorithms which are included in the package 'inaparc
'. The default initialization technique is K-means++ with the current version of fcm
function in this package. In the following code block, FCM runs for three clusters with the default values of the remaining arguments.
res.upfc <- upfc(x, centers=3)
Although it is a usual way to run UPFC with a pre-determined number of clusters, sometimes the users may wish to use a certain cluster prototypes matrix to start the algorithm. In this case, UPFC uses the user-specified prototype matrix instead of internally generated ones as follows:
v0 <- matrix(nrow=3, ncol=4, c(5.0, 3.4, 1.4, 0.3, 6.7, 3.0, 5.6, 2.1, 5.8, 2.7, 4.3, 1.4), byrow=TRUE) print(v0) res.upfc <- upfc(x, centers=v0)
In the following code block, there is another example for initialization of cluster prototypes for three clusters. v
, the cluster prototype matrix is initialized by using the K-means++ initalization algorithm (kmpp
) in the R package 'inaparc
'.
v0 <- inaparc::kmpp(x, k=3)$v print(v0) res.upfc <- upfc(x, centers=v0)
There are many other techniques for initialization of cluster prototype matrices in the R package '
inaparc
'. See the package documentation for other alternatives.
UPFC can be alternatively started with a user-specified membership degrees matrix. In this case, the function fcm
is called with the argument memberships
as follows:
u0 <- inaparc::imembrand(nrow(x), k=3)$u res.upfc <- upfc(x, centers=3, memberships=u0)
In order to generate the matrices of cluster prototypes and membership degrees, users can choose any of existing initialization algorithms in the R package 'inaparc
'. For this purpose, alginitv
and alginitu
can be speficied for cluster prototypes and membership degrees, respectively.
res.upfc <- upfc(x, centers=3, alginitv="firstk", alginitu="imembrand")
In general, the squared Euclidean distance metric is used with UPFC in order to compute the distances between the cluster centers and the data objects. Users can specify the other distance metrics with the argument dmetric
as follows:
res.upfc <- upfc(x, centers=3, dmetric="euclidean")
Although the argument m
, fuzzy exponent is usually choosen as 2
in most of the applications using PFCM, users can increase m
to get more fuzzified results as follows:
res.upfc <- upfc(x, centers=3, m=4)
However, large values of m
reduce the effect of memberships on the prototypes and the model will behave more like the PCM model (Pal et al, 2005). The argument eta
, typicality exponent should be usually choosen as 2
for UPFC, but users can change the eta
as follows in order to achieve the different clustering results.
res.upfc <- upfc(x, centers=3, eta=3)
In UPFC, the relative importance of probabilistic and possibilistic parts of the objective function can be changed by using a
and b
parameters, respectively. If $b=0$, and $\Omega_i=0$, UPFC behaves like to FCM. Contrarily, if $a=0$ UPFC becomes equivalent to PCM. In general these arguments are set to 2
as the default value, users can change them as follows:
res.upfc <- upfc(x, centers=3, a=3, b=2)
There are other input arguments available with the function
upfc
to control the run of UPFC algoritm. For the details, see theupfc
section in the package manual ofppclust
.
The fuzzy membership degrees matrix is one of the main outputs of the function upfc
.
res.upfc <- upfc(x, centers=3) as.data.frame(res.upfc$u)
The typicality degrees matrix of the function upfc
.
as.data.frame(res.upfc$t)
Initial and final cluster prototypes matrices can be achieved as follows:
res.upfc$v0 res.upfc$v
The function upfc
returns the clustering results as an intance of 'ppclust
' class. This object is summarized with the summary
method of the package 'ppclust
' as follows:
summary(res.upfc)
All available components of the 'ppclust
' object are listed at the end of summary. These elements can be accessed using as the attributes of the object. For example, the execution time of the run of UPFC is accessed as follows:
res.upfc$comp.time
In order to find an optimal solution, the function upfc
can be started for multiple times. As seen in the following code chunk, the argument nstart
is used for this purpose.
res.upfc <- upfc(x, centers=3, nstart=4)
When the multiple start is performed, either initial cluster prototypes or initial membership degrees could be wanted to keep unchanged between the starts of algorithm. In this case, the arguments fixcent
and fixmemb
are used for fixing the initial cluster prototypes matrix and initial membership degrees matrix, respectively.
res.upfc <- upfc(x, centers=3, nstart=4, fixmemb=TRUE)
Both the prototypes and memberships cannot be fixed at the same time.
The clustering result contains some outputs providing information about some components such as the objective function values, number of iterations and computing time obtained with each start of the algorithm. The following code chunk demonstrates these outputs.
res.upfc$func.val res.upfc$iter res.upfc$comp.time
Among the outputs from succesive starts of the algorithm, the best solution is obtained from the start giving the minimum value of the objective function, and stored as the final clustering result of the multiple starts of UPFC.
res.upfc$best.start
As described for the single start of UPFC above, the result of multiple starts of UPFC is displayed by using summary
method of the 'ppclust
' package.
res.upfc <- upfc(x, centers=3)
summary(res.upfc)
There are many ways of visual representation of the clustering results. One common techique is to display the clustering results by using pairs of the features. The 'plotcluster
' can be used to plot the clustering results as follows:
plotcluster(res.upfc, cp=1, trans=TRUE)
In the above figure, the plot shows the data objects which have typicality degrees than 0.5 by using the color palette 1 and transparent colors. In order to filter the objects for different typicality degrees, the value of tv
argument can be changed as follows:
plotcluster(res.upfc, cp=1, tv=0.25, trans=TRUE)
As default, the function plotcluster
plots for the typicality degrees for the algorithm producing both fuzzy membership and typicality degrees such as FPCM and PFCM including UPFC. In order to plot using the fuzzy memberships, the argument mt
, the membership type should be used with "u" option as follows:
plotcluster(res.upfc, mt="u", cp=1, trans=TRUE)
There are some nice versions of the cluster plots in some of the R packages. One of them is the function fviz_cluster
of the package 'factoextra
' (Kassambara & Mundt, 2017). In order to use this function for the fuzzy clustering result, first the fuzzy clustering object of ppclust
should be converted to kmeans
object by using the function ppclust2
of the package 'ppclust
' as shown in the first line of the code chunk below:
res.upfc2 <- ppclust2(res.upfc, "kmeans") factoextra::fviz_cluster(res.upfc2, data = x, ellipse.type = "convex", palette = "jco", repel = TRUE)
User can also use the function clusplot
in the package 'cluster
' (Maechler et al, 2017) for plotting the clustering results. For this purpose, the fuzzy clustering object of ppclust
should be converted to fanny
object by using the ppclust2
function of the package 'ppclust
' as seen in the following code chunk.
res.upfc3 <- ppclust2(res.upfc, "fanny") cluster::clusplot(scale(x), res.upfc3$cluster, main = "Cluster plot of Iris data set", color=TRUE, labels = 2, lines = 2, cex=1)
Cluster validation is an evaluation process for the goodness of the clustering result. For this purpose, various validity indexes have been proposed in the related literature. Since clustering is an unsupervised learning analysis which does not use any external information, the internal indexes are used to validate the clustering results. Although there are many internal indexes have originally been proposed for working with hard membership degrees produced by the K-means and its variants, most of these indexes cannot be used for fuzzy clustering results. In R environment, Partition Entropy (PE), Partition Coefficient (PC) and Modified Partition Coefficient (MPC) and Fuzzy Silhouette Index are available in 'fclust
' package (Ferraro & Giordani, 2015), and can be used as follows:
res.upfc4 <- ppclust2(res.upfc, "fclust") idxsf <- SIL.F(res.upfc4$Xca, res.upfc4$U, alpha=1) idxpe <- PE(res.upfc4$U) idxpc <- PC(res.upfc4$U) idxmpc <- MPC(res.upfc4$U)
cat("Partition Entropy: ", idxpe) cat("Partition Coefficient: ", idxpc) cat("Modified Partition Coefficient: ", idxmpc) cat("Fuzzy Silhouette Index: ", idxsf)
Anderson, E. (1935). The irises of the GASPE peninsula, in Bull. Amer. Iris Soc., 59: 2-5.
Ferraro, M.B. & Giordani, P. (2015). A toolbox for fuzzy clustering using the R programming language. Fuzzy Sets and Systems, 279, 1-16. http://dx.doi.org/10.1016/j.fss.2015.05.001
Kassambara, A. & Mundt, F. (2017). factoextra: Extract and Visualize the Results of Multivariate Data Analyses. R package version 1.0.5. https://CRAN.R-project.org/package=factoextra
Maechler, M., Rousseeuw, P., Struyf, A., Hubert, M. & Hornik, K.(2017). cluster: Cluster Analysis Basics and Extensions. R package version 2.0.6. https://CRAN.R-project.org/package=cluster
Pal, N. R., Pal, K. & Bezdek, J. C. (2005). A possibilistic fuzzy c-means clustering algorithm. IEEE Trans. Fuzzy Systems, 13 (4): 517-530
Yang, M. S. & Wu, K. L. (2006). Unsupervised possibilistic clustering. Pattern Recognition, 39(1): 5-21.
Wu, X., Wu, B., Sun, J. & Fu, H. (2010). Unsupervised possibilistic fuzzy clustering. J. of Information & Computational Sci., 7 (5): 1075-1080.
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.