Per-element concordance between two fuzzy partitions
Source:R/fuzzyPartitionMetrics.R
fuzzySpotConcordance.Rd
Per-element concordance between two fuzzy partitions
Examples
# generate fuzzy partitions:
m1 <- matrix(c(0.95, 0.025, 0.025,
0.98, 0.01, 0.01,
0.96, 0.02, 0.02,
0.95, 0.04, 0.01,
0.95, 0.01, 0.04,
0.99, 0.005, 0.005,
0.025, 0.95, 0.025,
0.97, 0.02, 0.01,
0.025, 0.025, 0.95),
ncol = 3, byrow=TRUE)
m2 <- matrix(c(0.95, 0.025, 0.025,
0.98, 0.01, 0.01,
0.96, 0.02, 0.02,
0.025, 0.95, 0.025,
0.02, 0.96, 0.02,
0.01, 0.98, 0.01,
0.05, 0.05, 0.95,
0.02, 0.02, 0.96,
0.01, 0.01, 0.98),
ncol = 3, byrow=TRUE)
colnames(m1) <- colnames(m2) <- LETTERS[seq_len(3)]
fuzzySpotConcordance(m1,m2)
#> Error in fuzzySpotConcordance(m1, m2): could not find function "fuzzySpotConcordance"