Dear friends,
let me provide an example:
input str8 dealdate int dealyear byte(revenue2001 revenue2002 revenue2003 revenue2004 revenue2005) "1/1/2002" 2002 20 30 40 50 60 "8/1/2003" 2003 50 60 70 80 90 "5/1/2001" 2001 5 6 7 8 9 end
Assume I create a regression output on this hypothetical set:
reg revenue2005 revenue2002
est sto test
esttab test, star(* 0.1 ** 0.05 *** 0.01 **** 0.001) r2 ar2 p label scalar(F)
Using "scalar(F)", I only obtain the F-statistics value. However, I would like to add the corresponding p-value for the f-test, ideally below the f-statistics value. I there a way to add it? Thank you for your time.
Regards, Ibo
let me provide an example:
input str8 dealdate int dealyear byte(revenue2001 revenue2002 revenue2003 revenue2004 revenue2005) "1/1/2002" 2002 20 30 40 50 60 "8/1/2003" 2003 50 60 70 80 90 "5/1/2001" 2001 5 6 7 8 9 end
Assume I create a regression output on this hypothetical set:
reg revenue2005 revenue2002
est sto test
esttab test, star(* 0.1 ** 0.05 *** 0.01 **** 0.001) r2 ar2 p label scalar(F)
Using "scalar(F)", I only obtain the F-statistics value. However, I would like to add the corresponding p-value for the f-test, ideally below the f-statistics value. I there a way to add it? Thank you for your time.
Regards, Ibo
Comment