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
reshape in StataDear All, I have some issues about reshape. Here is the original matrix I have. Code: * Example gen…
Help with reshapeHello everyone, I have got the following matrix. * Example generated by -dataex-. To install: ssc …
Report estimates from Heckman AND margins commandDear all, I am using Stata 14 and have some questions regarding the commands -Heckman-, -margins- an…
Help on modelling- endogeneity-panel dataHello, I am running a model to find the effect of corurption on GDP in across Italian regions using…
Joining datasets when a variable is in a different formatHi all, I currently have a data set that looks like this where each quarter is represented by a sep…
Subscribe to:
Post Comments (Atom)
0 Response to Graph Combine for Autocorrelation Function
Post a Comment