boot.mlcm {MLCM} | R Documentation |
Resampling of an Estimated Conjoint Measurement Scale
Description
Using the fitted
responses (probabilities) to the conjoint measurement scale, new responses are generated which permit new bootstrap replications of estimated scales to be generated. The mean scale is useful for evaluating bias and the standard deviation for estimating standard errors of the scale values.
Usage
boot.mlcm(x, nsim, ...)
Arguments
x |
an object of class ‘mlcm’ |
nsim |
an integer, the number of simulations. |
... |
Additional options passed along to the function |
Details
The scale values (from ‘glm’ method) permit the fitted probabilities to be estimated. These are used to generate new responses to the stimulus pairs using rbinom
. The new responses are then used with mlcm
to estimate a bootstrapped scale. This is repeated N
times and stored in the output with the mean and standard deviation of the bootstrapped scales.
Value
A list of 4 elements:
boot.samp |
A |
bt.mean |
A vector of length |
bt.sd |
A vector of length |
N |
The number of bootstrap simulations. |
Author(s)
Kenneth Knoblauch and Laurence T. Maloney
References
Ho, Y. H., Landy. M. S. and Maloney, L. T. (2008). Conjoint measurement of gloss and surface texture. Psychological Science, 19, 196–204.
See Also
Examples
data(BumpyGlossy)
bg.mlcm <- mlcm(BumpyGlossy)
#nsim should be near 10,000 for stability,
# but this will take a little time
boot.mlcm(bg.mlcm, 100)