boot.mlcm: 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 mlcm.
Value
A list of 4 elements:
boot.samp
A \(p\) x \(N\) matrix of the bootstrap samples of the scale, where p is the number of scale values and N is the number of simulations.
bt.mean
A vector of length \(p\) giving the mean of the bootstrap scales.
bt.sd
A vector of length \(p\) giving the standard deviation of the boostrap scales.
N
The number of bootstrap simulations.
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.
References
Ho, Y. H., Landy. M. S. and Maloney, L. T. (2008). Conjoint measurement of gloss and surface texture. Psychological Science, 19, 196--204.
# NOT RUN { 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)
# }