search for: mottle2

Displaying 1 result from an estimated 1 matches for "mottle2".

Did you mean: mottle
2008 Feb 13
1
model construction
...templating purchasing a very large number of flowers. So, if amt = a vector of quantities of flowers bought on various days deltaP = a vector of the differences between the purchase price and the posted price on those days Two simple models might be: mottle1 = lm( deltaP ~ amt ) or mottle2 = lm( deltaP ~ amt - 1 ) But, I have the urge to set the model up as follows mottle3 = lm( deltaP ~ amt - 1, weights = amt ) because I want the big purchases to weigh much more in the calculation of the slope than the small purchases, but I have an uneasy feeling that this amounts to do...