I am trying to replicate the code for combing graphs using graph combine, but the size of the produced graph is very small. How can I fix this?
sysuse auto
local graphs ""
forval i = 1/20 {
scatter mpg weight, name(g`i', replace) nodraw
local graphs "`graphs' g`i'"
}
graph combine `graphs', col(3) xsize(1.5) ysize(20) iscale(*2)
graph export graphs.png, height(16000)
sysuse auto
local graphs ""
forval i = 1/20 {
scatter mpg weight, name(g`i', replace) nodraw
local graphs "`graphs' g`i'"
}
graph combine `graphs', col(3) xsize(1.5) ysize(20) iscale(*2)
graph export graphs.png, height(16000)
Comment