Learn R Programming

randnet (version 0.4)

NMI: calculates normalized mutual information

Description

calculates normalized mutual information, a metric that is commonly used to compare clustering results

Usage

NMI(g1, g2)

Arguments

g1

a vector of cluster labels

g2

a vector of cluster labels (same length as g1)

Value

NMI value

Examples

Run this code
# NOT RUN {
dt <- BlockModel.Gen(30,300,K=3,beta=0.2,rho=0.9,simple=FALSE,power=TRUE)


A <- dt$A


ssc <- reg.SSP(A,K=3,lap=TRUE)

NMI(ssc$cluster,dt$g)


# }

Run the code above in your browser using DataLab