Hello
I have 3 different estimations that I want to put together in a table and I am using the following command:
Now, for all these different estimations I get the following:
I don't want to put together all these 9 rows, but i need only 2 rows (a coefficient value and a p-value) and 3 columns (one for each estimation) for these 3 estimations. Is it possible to do so?
Can I change the command something like this? The main aim is to get a table and then graph it for p-values and coefficients.
I have 3 different estimations that I want to put together in a table and I am using the following command:
Code:
m1 eststo: estat simple matrix b = r(table)' m2 eststo: estat simple matrix b = b\r(table)' m3 eststo: estat simple matrix b = b\r(table)' matrix list b mat2txt, matrix(b) saving(mytable.rtf) title(Table sample)
Code:
return list macros: r(agg) : "simple" matrices: r(V) : 1 x 1 r(b) : 1 x 1 r(table) : 9 x 1
Can I change the command something like this? The main aim is to get a table and then graph it for p-values and coefficients.
Code:
matrix b = b[1,1] b[4,1] \r(table)'
Comment