Hello, I need to add 6 thresholds, for example when I have 3 thresholds, I usually used exclusion, tipping-point(cross-over) and inclusion. Now I need 6 thresholds, how could I do?
(cut point: 0, 0.2, 0.4, 0.6, 0.8, and 1)
-USUALLY USED: EXAMPLE:
GDP <- calibrate(raw1$gdppcrate92, type = "fuzzy",
method = "direct", thresholds = "e=-19.29, c=75, i=8.29",
logistic = TRUE, idm = 0.947)
GDP-fuzzy1$gdppcrate92f
plot(fuzzy1$gdppcrate92f, GDP,
pch = 1, col = "black",
cex.axis = 0.75,
cex.lab = 0.9, xlab = "gdppcrate92", ylab = "GDP")
text(fuzzy1$gdppcrate92f, GDP, labels = CASES, cex = 0.7, pos = 2)
abline(a = 0, b = 1, col = "grey")