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
Generalised Ordered Logit (gologit2) with Categorical Nonparallel VariableHello, I am currently studying the relationship between firm size and access to finance by using th…
Computing Average/Mean ROC Curve and AUC among different observersDear all, I was wondering if it would be possible to compute a mean ROC curve, with corresponding m…
coefficent of variationHello, I have run my dataset only discovered that my CV are more that 30 percent and some are even 4…
Cox regressions for Twitter data (proportional hazards)Dear all, first and foremost a happy new year to all of you! In my current research project, I am …
matching husband-wife and father-daughter observations and generating new variablesDear Statlisters I am working on household survey data. Here I have variables on responses by house…
Subscribe to:
Post Comments (Atom)
0 Response to Graph Combine for Autocorrelation Function
Post a Comment