I am trying to obtain the test results using estout command however I am unable to put them there.


Code:
reg y x1 x2 x3 x4
eststo 1

xtset ıd time

xtreg y x1 x2 x3 x4,be

eststo 2

xtreg y x1 x2 x3 x4,fe

eststo 3

xtreg y x1 x2 x3 x4

eststo 4

hausman 3 4

hausman 3 4, sigmamore

estout 1 2 3 4, cells(b(star fmt(%9.4f)) se(par) t(par) p(par)) stats(N r2 r2_b r2_w r2_o , fmt(%9.4f %9.0g)labels (N))
However I want to see the poolability test result(It gives automatically with xtreg) and also the hausman test result at the bottom of the table where r2 N etc exists. Can someone please help me on that?