--
You received this message because you are subscribed to the Google Groups "QCA with R" group.
To unsubscribe from this group and stop receiving emails from it, send an email to qcawithr+u...@googlegroups.com.
To view this discussion on the web visit https://groups.google.com/d/msgid/qcawithr/f98d0c12-6640-4164-b4c3-d613bb24bfe3n%40googlegroups.com.
Hi Adrian,
Thanks for your help. Does this mean that my current approach of mixing multi-value and fuzzy values would be fine from a methodology standpoint, I just have to be careful when interpreting the results?
If so, I have a follow-up question: When using fuzzy or crisp conditions, I have used "-" as a "don't care" value as explained in your book. When I try that with multi-value conditions, I always get an error "Possibly uncalibrated multivalue conditions. Please check: B" while creating a truth table. Is using "don't care" for multi-value conditions also possible?Here again a small example:
library(QCA)
df <- data.frame(
Case = c(1, 2, 3, 4),
A = c(1, 0, 1, 1),
B = c(2, 1, "-", 0),
C = c(1, 0.33, 0.66, 1),
D = c(0.67, 0.33, 0.33, 1))
supset <- superSubset(df, outcome = "A", conditions = c("B", "C", "D"))
supset
tt <- truthTable(df, outcome = "A", conditions = c("B", "C"))
print(tt)
solution <- minimize(tt, details = TRUE)
print(solution)
Thanks a lot
Steffen