Solved – Individual specific variables in McFadden’s choice model

logitstata

From my understanding of McFadden's discrete choice model, individual specific variables such as income should not affect an individual's choice unless interacted with product characteristics.

But in Stata's command asclogit, which claims to estimate McFadden's model, allows individual variables without interacting with product characteristics.

I am finding this command bizarre.

Here is my answer to this question : ASCLOGIT DOES not interact the casevars with the product characteristics . It interact the casevars with ALTERNATIVE DUMMIES. This is done behind the scene. If you need interactions with product characteristics, you need to use clogit and manually generate interactions.

Best Answer

Stata's asclogit command formats and handles the interactions behind the scenes, but the interactions between the case-specific variables and the alternatives are performed as part of the analysis with asclogit.

The results of asclogit are the same as the results of Stata's clogit command when the case-specific variables are explicitly interacted with the alternatives.

The asclogit command is simply a convenient version of clogit and there is nothing "bizarre" about it.