Hi,
I use the following code:
and get the following histograms: 
Then, I plot the histogram for the same data, without the by option to get the histogram for the totality of the data:

My question is the following:
How can I place the latest histogram in the blank space on the third row in the first figure?
Kind regards,
Neg
I use the following code:
Code:
hist dob , by(CW2) note("Fstat=814.39")) frequency ylabel(,nogrid) xlabel(0(5)30, grid gstyle(dot) glcolor(red)) bin(31) start(1) scheme(tab2) name(graph1, replace)
Then, I plot the histogram for the same data, without the by option to get the histogram for the totality of the data:
Code:
hist dob , frequency ylabel(,nogrid) xlabel(0(5)30, grid gstyle(dot) glcolor(red)) bin(31) start(1) scheme(tab2)
My question is the following:
How can I place the latest histogram in the blank space on the third row in the first figure?
Kind regards,
Neg
Comment