用SPSS,EVIEWS不是不可以做,只是太麻烦。教你如何用SAS做吧。
(1)数据的排列方式
year district Y X1 X2...;
(year,district 哪个在前面,你去试试,因为在网吧上网,没法给你确定!)
(2)几句程序
proc tscsreg;
model y=X1 X2.../fixone randone (后面的 options depend whether u wanna make one-way fix effects / random effects estimination or two-way matters)
id year district;
run;
OK!
sorry,computer works wrong so that i can't type in chinese now.