Dear all,
I must confess that I am lost at the abundance of options in meta-forestplot. When run the forestplot command with subgroup option, the graph produces with taking the variable name as the sub-group title while I intend to have the variable lable instead. What option there is to achieve this without using the graph editor? Any help is appreciated. Please see the example below for demo:

I must confess that I am lost at the abundance of options in meta-forestplot. When run the forestplot command with subgroup option, the graph produces with taking the variable name as the sub-group title while I intend to have the variable lable instead. What option there is to achieve this without using the graph editor? Any help is appreciated. Please see the example below for demo:
Code:
clear webuse bcg, clear ***create a group based on latitude** summ latitude, meanonly label def clathigh 0 "Below average lat." 1 "Above average lat." gen byte lathigh = latitude > r(mean) label values lathigh clathigh *****label two variables to be used as sub-groups***** lab var alloc "Random allocation" lab var lathigh "High latitude" des alloc lathigh ***Declare meta data**** meta esize npost nnegt nposc nnegc, esize(lnrratio) ***Forest plot with subgroups**** //Here I want "Random allocation" the variable label instead variable name and same for 'latitude' meta forestplot, subgroup(alloc lathigh)
Comment