boot.mlcm: Resampling of an Estimated Conjoint Measurement Scale

View source: R/boot.mlcm.R

boot.mlcmR 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 mlcm.

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 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.

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

mlcm

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)

MLCM documentation built on March 18, 2022, 7:31 p.m.