I am looking to graph autocorrelations using graph combine via the following code:
use "`root_folder'/Data/S&P Pre 2011 Sample.dta"
tsset date
ac vwretd, name(no1, replace)
ac ewretd, name(no2, replace)
graph combine (no1 no2), name(combine1, replace), cols(2), xsize(6.5) ysize (10) title("Autocorrelation Function: Pre 2011")
use "`root_folder'/Data/S&P Post 2011 Sample.dta"
tsset date
ac vwretd, name(no3, replace)
ac ewretd, name(no4, replace)
graph combine (no3 no4), name(combine2, replace), cols(2), xsize(6.5) ysize (10) title("Autocorrelation Function: Post 2011")
graph combine (combine1 combine2), name(combine3, replace), rows(2) cols(1) title("Autocorrelation Functions")
The code delivers the graphs side by side. I want them to presented one below the other. I am wondering why this code doesn't work?
Related Posts with Graph Combine for Autocorrelation Function
I am wondering the result about cross-classified multilevel modelArray l am working about cross-classified multilevel model dependent variable : immigratio…
pwcorr display three starsI want display three stars if p<0.01, display two stars if p<0.05, display one star if p<0.…
Mixed logit modelHi All I am trying to calibrate a multilevel crash outcome analysis using a mixed logit model. The …
global marginal effects in ologitHi in older versions of STATA, to obtain the marginal effects of the covariates we use the command "…
Geographic RDD: distance from observation points to border.Dear Statalists, I want to conduct a Geographic Regression Discontinuity Design to compare municipa…
Subscribe to:
Post Comments (Atom)
0 Response to Graph Combine for Autocorrelation Function
Post a Comment