On Mon, 12 May 2014, Allin Cottrell wrote:
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".)
And don't forget you can do the same with standard errors with $stderr. A
complete list of these accessors is available under the "Help > Function
reference" submenu (or of course the pdf manuals).
-------------------------------------------------------
Riccardo (Jack) Lucchetti
Dipartimento di Scienze Economiche e Sociali (DiSES)
Università Politecnica delle Marche
(formerly known as Università di Ancona)
r.lucchetti(a)univpm.it
http://www2.econ.univpm.it/servizi/hpp/lucchetti
-------------------------------------------------------