Hi there
Does anyone know how to extract numbers from a paired table after using the -mcc- command?
-matcell- works after -tab-
...but doesn't work after -mcc-
With thanks
Does anyone know how to extract numbers from a paired table after using the -mcc- command?
-matcell- works after -tab-
Code:
clear webuse lowbirth.dta keep pairid low smoke reshape wide smoke , i(pairid) j(low) tab2 smoke1 smoke0, matcell(x) display x[1,1]
Code:
clear webuse lowbirth.dta keep pairid low smoke reshape wide smoke , i(pairid) j(low) mcc smoke1 smoke0, matcell(x) display x[1,1]
Comment