ppclust2: Convert 'ppclust' objects to the other types of cluster...

Description Usage Arguments Value Author(s) See Also Examples

View source: R/tools.R

Description

Converts an object of ‘ppclust’ class to the other types of cluster objects.

Usage

1
ppclust2(objx, otype, ...)

Arguments

objx

an object of ppclust class.

otype

target object class type for conversion.

...

additional arguments.

Value

an object of fanny.object, summary.fclust, kmeans or vegclust class.

Author(s)

Zeynel Cebeci

See Also

as.ppclust, is.ppclust, summary.ppclust

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
data(iris)
# Create a object of ppclust
opc <- fcm(x=iris[,1:4], centers=3)

# Check the class of opc object
is.ppclust(opc)

# Convert ppclust object 'opc' to the fanny object
ofc <- ppclust2(opc, otype="fanny")

# Check the class of 'ofc' for ppclust
is.ppclust(ofc)

# Check the class of 'ofc'
class(ofc)

# Convert ppclust object 'opc' to fclust object
ofc <- ppclust2(opc, otype="fclust")

# Check the class of 'ofc'
class(ofc)

Example output

[1] TRUE
[1] FALSE FALSE
[1] "fanny"     "partition"
[1] "fclust"

ppclust documentation built on Feb. 9, 2020, 5:07 p.m.