[R] How to change the significant codes default?

2004-11-20 Thread Shigeru Mase
Dear R experts, I am posting this question on behalf of a Japanese R user who wants to know how to change the siginificant codes default. As you know, R's default significant codes are: Signif. codes: 0 `***' 0.001 `**' 0.01 `*' 0.05 `.' 0.1 ` ' 1 But he says that it is usual in economics to g

Re: [R] How to change the significant codes default?

2004-11-20 Thread Uwe Ligges
Shigeru Mase wrote: Dear R experts, I am posting this question on behalf of a Japanese R user who wants to know how to change the siginificant codes default. As you know, R's default significant codes are: Signif. codes: 0 `***' 0.001 `**' 0.01 `*' 0.05 `.' 0.1 ` ' 1 But he says that it is usual

Re: [R] How to change the significant codes default?

2004-11-20 Thread Ted Harding
On 20-Nov-04 Uwe Ligges wrote: > Shigeru Mase wrote: >> Dear R experts, >> >> I am posting this question on behalf of a Japanese R user >> who wants to know how to change the siginificant codes default. >> As you know, R's default significant codes are: >> >> Signif. codes: 0 `***' 0.001 `**' 0

Re: [R] How to change the significant codes default?

2004-11-21 Thread Uwe Ligges
(Ted Harding) wrote: On 20-Nov-04 Uwe Ligges wrote: Shigeru Mase wrote: Dear R experts, I am posting this question on behalf of a Japanese R user who wants to know how to change the siginificant codes default. As you know, R's default significant codes are: Signif. codes: 0 `***' 0.001 `**' 0.01 `

Re: [R] How to change the significant codes default?

2004-11-21 Thread Ted Harding
On 21-Nov-04 Uwe Ligges wrote: > (Ted Harding) wrote: >> [...] >> Then, when you want your private version, simply do >> >> source("printCoefmat.R") >> >> and it will overlay the original version. (Experts will have >> to advise whether this clashes with any "namespace" issues. >> On my reading

RE: [R] How to change the significant codes default?

2004-11-21 Thread Liaw, Andy
> From: Uwe Ligges > > (Ted Harding) wrote: > > > On 20-Nov-04 Uwe Ligges wrote: > > > >>Shigeru Mase wrote: > >> > >>>Dear R experts, > >>> > >>>I am posting this question on behalf of a Japanese R user > >>>who wants to know how to change the siginificant codes default. > >>>As you know, R's d

Re: [R] How to change the significant codes default?

2004-11-21 Thread Gabor Grothendieck
Uwe Ligges statistik.uni-dortmund.de> writes: : : (Ted Harding) wrote: : : > On 20-Nov-04 Uwe Ligges wrote: : > : >>Shigeru Mase wrote: : >> : >>>Dear R experts, : >>> : >>>I am posting this question on behalf of a Japanese R user : >>>who wants to know how to change the siginificant codes def

Re: [R] How to change the significant codes default?

2004-11-21 Thread Richard A. O'Keefe
Shigeru Mase <[EMAIL PROTECTED]> wrote: I am posting this question on behalf of a Japanese R user who wants to know how to change the siginificant codes default. It's the line symbols = c("***", "**", "*", ".", " ")) in printCoefmat(), isn't it? (summary.lm makes

Re: [R] How to change the significant codes default?

2004-11-22 Thread Shigeru Mase
Dear Uwe, Ted and Gabor. Thanks for your quick and kind informations. The suggestion of Gabor combined with that of Ted works fine. Of course, I myself would not like to change R's significant codes default, but I could get a deeper insight of R language mechanism. ___

Re: [R] How to change the significant codes default?

2004-11-22 Thread Ted Harding
On 22-Nov-04 Shigeru Mase wrote: > Dear Uwe, Ted and Gabor. Thanks for your quick and kind informations. > The suggestion of Gabor combined with that of Ted works fine. > Of course, I myself would not like to change R's significant codes > default, but I could get a deeper insight of R language me