各位大神,我真心从入门开始,求助求助
我改了变量,我的变量有点多

,但是结果我不知道为什么
% No fixed effects + spatially lagged dependent variable
info.lflag=0; % required for exact results
info.model=0;
info.fe=0; % Do not print intercept and fixed effects; use info.fe=1 to turn on
% New routines to calculate effects estimates
results=sar_panel_FE(y,[xconstant x],W,T,info); 
vnames=strvcat('hp','intercept','loggdp','lognmrk','logzggz','logkzpsr','logcxck','logfwxsmj','logfwjgmj','logzzkftz','logccry');
% Print out coefficient estimates
prt_sp(results,vnames,1);
% Print out effects estimates
spat_model=0;
direct_indirect_effects_estimates(results,W,spat_model);
panel_effects_sar(results,vnames,W);
% ----------------------------------------------------------------------------------------
% No fixed effects + spatially lagged dependent variable + spatially
% independent variables
info.lflag=0; % required for exact results
info.model=0;
info.fe=0; % Do not print intercept and fixed effects; use info.fe=1 to turn on
% New routines to calculate effects estimates
results=sar_panel_FE(y,[xconstant x wx],W,T,info); 
vnames=strvcat('logcit','intercept''loggdp','lognmrk','logzggz','logkzpsr','logcxck','logfwxsmj','logfwjgmj','logzzkftz','logccry','W*loggdp','W*lognmrk','W*logzggz','W*logkzpsr','W*logcxck','W*logfwxsmj','W*logfwjgmj','W*logzzkftz','W*logccry');
% Print out coefficient estimates
prt_sp(results,vnames,1);
% Print out effects estimates
spat_model=1;
direct_indirect_effects_estimates(results,W,spat_model);
panel_effects_sdm(results,vnames,W);
结果是这样的:
Output truncated.  Text exceeds maximum line length of 25,000 characters for Command Window display.
哎是变量太多了吗,感觉也不是啊,之前用过demoLMsarsem-panel试出结果了啊