Dear Stata users,
This question have probably been already asked, but I still struggle to find the answer.
I have a nested structure of the (longitudinal) data on company performance. Company performance is observed over years over several companies. Companies are nested both within industries and within states. Industries and states are not nested within each other. In sum, I have
Level 1: Year (Residual)
Level 2: Company
Level 3: Industry
Level 3: State
How do I properly specify this structure with the mixed command? By relating to existing examples on the web, I assume the command should be like this, but I am not sure whether it is correct
I would be grateful for your help.
This question have probably been already asked, but I still struggle to find the answer.
I have a nested structure of the (longitudinal) data on company performance. Company performance is observed over years over several companies. Companies are nested both within industries and within states. Industries and states are not nested within each other. In sum, I have
Level 1: Year (Residual)
Level 2: Company
Level 3: Industry
Level 3: State
How do I properly specify this structure with the mixed command? By relating to existing examples on the web, I assume the command should be like this, but I am not sure whether it is correct
Code:
mixed performance || _all: R.industry || state: || company:
Comment