On Tue, 13 May 2014, Jaleel Fazeel wrote:
May I know is there any way to change the output appears in for some
large
and small numbers in scientific notation ( like 5.6777e6).
You can't adjust the printing of regression output as such. But you
can "grab" values such as the regression coefficients (via the
variable $coeff) or standard errors ($stderr) and print them however
you wish using the "printf" command. For example,
open data4-10
ols 1 0 2 3
matrix b = $coeff
printf "coefficients:\n%10.7f\n", b
(You'll need to read the help for "printf".)
Allin Cottrell