Given two partitions, the function concordance calculates the
number of pairs classified as belonging or not belonging to the same
cluster with respect to partitions part1 or part2.
# Generate two artificial partitionspart1<-sample(1:3,150,replace=TRUE)
part2<-sample(1:5,150,replace=TRUE)
# Compute the table of concordances and discordancesconcordance(part1,part2)