Hi Statalist.
I have created two graphs with the Interflex-package, and my end goal is to stack them together using the graph combine function.
However, when I create the graphs there's a huge distance / or gap between the ylabel and the plot region in the first graph. I have used the exact same code to reproduce both of them (see below).
Graph 1: Huge gap between plot region and ylabel

Graph 2: Small gap between plot region and ylabel

Can someone help me?
I have used the following code:
PS: I'm using STATA17 on Mac.
PPS: I haven't uploaded data with dataex, because the example data doesn't reproduce the above difference.
I have created two graphs with the Interflex-package, and my end goal is to stack them together using the graph combine function.
However, when I create the graphs there's a huge distance / or gap between the ylabel and the plot region in the first graph. I have used the exact same code to reproduce both of them (see below).
Graph 1: Huge gap between plot region and ylabel
Graph 2: Small gap between plot region and ylabel
Can someone help me?
I have used the following code:
Code:
clear use data.dta keep if indicator == 1 * GRAPH 1 interflex agenda index_magt problem andelK venstrepar_pct log_indb gaeld_1000 lag_y socindex, fe(kom_nr yr) vce(cluster) cluster(kom_nr) clear use data.dta keep if indicator == 2 * GRAPH 2 * interflex agenda index_magt problem andelK venstrepar_pct log_indb gaeld_1000 lag_y socindex, fe(kom_nr yr) vce(cluster) cluster(kom_nr)
PPS: I haven't uploaded data with dataex, because the example data doesn't reproduce the above difference.

Comment