## six-item 1-7 rating scale
x <- lfast(
n = 256,
mean = 4.0,
sd = 1.25,
lowerbound = 1,
upperbound = 7,
items = 6
)
## five-item -3 to +3 rating scale
x <- lfast(
n = 64,
mean = 0.025,
sd = 1.25,
lowerbound = -3,
upperbound = 3,
items = 5
)
## four-item 1-5 rating scale with medium variation
x <- lfast(
n = 128,
mean = 3.0,
sd = 1.00,
lowerbound = 1,
upperbound = 5,
items = 4,
precision = 5
)
## eleven-point 'likelihood of purchase' scale
x <- lfast(256, 3, 3.0, 0, 10)
Run the code above in your browser using DataLab