Hi
In many cases, I use the following code:
to get a nice graph like:

What I can't figure out is the option to remove the summary rows (red dot in front) from the graph.
Does anyone know?
Thank you very much in advance.
In many cases, I use the following code:
Code:
cls
webuse lbw, clear
regress bwt i.smoke##i.race
margins smoke#race
mata st_matrix("tbl", st_matrix("r(table)")[(1,5,6,4), .]')
matrix roweq tbl = non-smoker non-smoker non-smoker smoker smoker smoker
matrix rownames tbl = white black other white black other
matrix colnames tbl = b lb ub p
matrix2stata tbl, clear
rename tbl_* *
strofnum eq names
meta set b lb ub, studylabel(names) random(mle)
meta forestplot _id _plot _esci, subgroup(eq) note("") nogmarkers noomarker ///
noohetstats noohomtest noosigtest noghetstats nogwhomtests nogbhomtests ///
columnopts(_id, title("")) columnopts(_esci, supertitle("mean weight")) ///
nooverall name(fig2, replace) nullrefline
What I can't figure out is the option to remove the summary rows (red dot in front) from the graph.
Does anyone know?
Thank you very much in advance.


Comment