Full information - I am new to choice models but I have a questions as to what is going on with the weights in cmrologit? I have a ranked choice conjoint with frequency weights but it looks like adding frequency weights (as opposed to probability weights) magically creates higher precision when adding identical weights usually has no effect. Also, I seem to get more precision for higher values of the weight. I could just call my frequency weights as probability weights, but that seems to be a weird solution.
Thank you in advance.
Kristen
use https://www.stata-press.com/data/r17/evignet, clear
cmset caseid, noalternatives
gen weight1 = 1
gen weight2 = 10
cmrologit pref i.female age i.grades i.edufit i.workexp i.boardexp if job==1 [fw=weight1]
cmrologit pref i.female age i.grades i.edufit i.workexp i.boardexp if job==1 [fw=weight2]
cmrologit pref i.female age i.grades i.edufit i.workexp i.boardexp if job==1 [pw=weight1]
cmrologit pref i.female age i.grades i.edufit i.workexp i.boardexp if job==1 [pw=weight2]
Thank you in advance.
Kristen
use https://www.stata-press.com/data/r17/evignet, clear
cmset caseid, noalternatives
gen weight1 = 1
gen weight2 = 10
cmrologit pref i.female age i.grades i.edufit i.workexp i.boardexp if job==1 [fw=weight1]
cmrologit pref i.female age i.grades i.edufit i.workexp i.boardexp if job==1 [fw=weight2]
cmrologit pref i.female age i.grades i.edufit i.workexp i.boardexp if job==1 [pw=weight1]
cmrologit pref i.female age i.grades i.edufit i.workexp i.boardexp if job==1 [pw=weight2]

Comment