I am analyzing panel data using the XTITSA command: xtitsa count econindex b1.m, single trperiod(2020m3) vce(robust) posttrend figure replace
‘econindex’ is the composite scale, including poverty, public assistance, and unemployment. They are time constant.
My question is why said xtitsa command generated the error message below:
eform cannot be used in xtitsa
r(198);
Alternatively, I included the individual variables instead of the composite scale: xtitsa count poverty publicassistance unemployment b1.m, single trperiod(2020m3) vce(robust) posttrend figure replace. This xtitsa successfully produced the results without any error message.
It would be greatly appreciated if you tell me why I had the error message in the presence of the composite scale. Thank you.
. describe econindex4 poverty femaleheaded unemploy
storage display value
variable name type format label variable label
----------------------------------------------------------------------------------------------------------------------------------------------
econindex4 float %9.0g
poverty double %12.0g %Poverty
femaleheaded double %12.0g %Female Headed
unemploy double %12.0g %Unemploy
‘econindex’ is the composite scale, including poverty, public assistance, and unemployment. They are time constant.
My question is why said xtitsa command generated the error message below:
eform cannot be used in xtitsa
r(198);
Alternatively, I included the individual variables instead of the composite scale: xtitsa count poverty publicassistance unemployment b1.m, single trperiod(2020m3) vce(robust) posttrend figure replace. This xtitsa successfully produced the results without any error message.
It would be greatly appreciated if you tell me why I had the error message in the presence of the composite scale. Thank you.
. describe econindex4 poverty femaleheaded unemploy
storage display value
variable name type format label variable label
----------------------------------------------------------------------------------------------------------------------------------------------
econindex4 float %9.0g
poverty double %12.0g %Poverty
femaleheaded double %12.0g %Female Headed
unemploy double %12.0g %Unemploy
Comment