Hello,
I have a dataset that I'm working with that uses a directed-dyad year unit of analysis:
Ccodes = country codes. So, there are digits assigned to countries. In this case, for example, 2 is United States and 800 is Thailand. There's a probability that the data may have heteorskedasticity. I'm still not sure what regression to use, but I may have to use GLS (again, I'm not sure about this. My DV is a percentage 0-100. But I believe it is neither censored nor truncated). How do I tell stata to use panel data when the unit of analysis is directed dyad? I never had this problem before, because my unit of analysis used to be country-year. So, that was rather easy. I can't use both country codes and year, because xtset won't allow it (too many variables). xtest with ccode1 and year just yields to "repeated time values within panel."
I appreciate any leads.
Regards,
MW
I have a dataset that I'm working with that uses a directed-dyad year unit of analysis:
Code:
input float(ccode1 ccode2 year) 2 800 2000 800 2 2000 2 58 2000 58 2 2000
I appreciate any leads.
Regards,
MW
Comment