Learn R Programming

fclust (version 1.0.1)

cl.memb.t: Cluster membership

Description

Produces a summary of the membership degree information according to a threshold.

Usage

cl.memb.t (U, t)

Arguments

U
Membership degree matrix
t
Threshold in [0.5,1.0] (default: 0.5)

Value

  • info.UMatrix containing the indices of the clusters where the objects are assigned (row 1) and the associated membership degrees (row 2)

See Also

cl.memb, cl.memb.H

Examples

Run this code
n=20
k=3
U=matrix(runif(n*k,0,1), nrow=n, ncol=k)
U=U/apply(U,1,sum)
info.U=cl.memb.t(U,0.6)

Run the code above in your browser using DataLab