brQCA {braQCA} | R Documentation |
Bootstrapped Recommendation
Description
Provides recommendations for consistency score and configurational n thresholds to attain a desired level of confidence in a QCA algorithm application.
Usage
brQCA(
qca.data,
outcome = "OUT",
type = "crisp",
inclcut = "",
ncut = 2,
neg.out = FALSE,
sim = 10,
verbose = TRUE
)
Arguments
qca.data |
the QCA data frame. |
outcome |
the outcome variable in the QCA data frame of causal conditions; |
type |
of QCA application, |
inclcut |
range of consistency scores for inclusion. If not specified, this defaults to |
ncut |
configurational n levels to simulate. Can be altered to give options for the range of minimum to maximum |
neg.out |
[from QCA package] “Logical, use negation of outcome (ignored if data is a truth table object).” Default set to |
sim |
number of simulations to run for each combination of parameters. The final number of simulations is |
verbose |
prints the system time used to run the simulation and the percent complete. Default set to |
Value
Significance levels reached (.10,.05, .01, .001) when specifying a combination of inclcut, ncut, and neg.out in a QCA model.
Examples
qca.data <- rallies[,8:13]
## Not run:
brQCA(qca.data,outcome="P",ncut=5,sim=1)
## End(Not run)