synt.data: Synthetic data

synt.dataR Documentation

Synthetic data

Description

Synthetic dataset with 2 non-spherical clusters.

Usage

data(synt.data)

Format

A matrix with 302 rows and 2 columns.

Details

Although two clusters are clearly visible, fuzzy k-means fails to discover them. The Gustafson and Kessel-like fuzzy k-means should be used for finding the known-in-advance clusters.

Author(s)

Paolo Giordani, Maria Brigida Ferraro, Alessio Serafini

See Also

Fclust, FKM, FKM.gk, plot.fclust

Examples

## Not run: 
## synthetic data
data(synt.data)
plot(synt.data)
## fuzzy k-means
syntFKM=FKM(synt.data)
## Gustafson and Kessel-like fuzzy k-means
syntFKM.gk=FKM.gk(synt.data)
## plot of cluster structures from fuzzy k-means and Gustafson and Kessel-like fuzzy k-means
par(mfcol = c(2,1))
plot(syntFKM)
plot(syntFKM.gk)

## End(Not run)

fclust documentation built on Nov. 16, 2022, 5:10 p.m.

Related to synt.data in fclust...