[R] find source code

2005-01-17 Thread r . ghezzo
I am using R 2.0.2 on a WinXP I am trying to get the code of the Kruskal-Wallis test but kruskal.test function (x, ...) UseMethod(kruskal.test) environment: namespace:stats ls(3) [1] acf acf2AR add.scope .. [181] kruskal.test ks.test

Re: [R] find source code

2005-01-17 Thread Simon Wood
stats:::kruskal.test.default On Mon, 17 Jan 2005 [EMAIL PROTECTED] wrote: I am using R 2.0.2 on a WinXP I am trying to get the code of the Kruskal-Wallis test but kruskal.test function (x, ...) UseMethod(kruskal.test) environment: namespace:stats ls(3) [1] acf

RE: [R] find source code

2005-01-17 Thread Liaw, Andy
From: [EMAIL PROTECTED] I am using R 2.0.2 on a WinXP Does that version of R exist? I am trying to get the code of the Kruskal-Wallis test but kruskal.test function (x, ...) UseMethod(kruskal.test) environment: namespace:stats ls(3) [1] acf acf2AR

Re: [R] find source code

2005-01-17 Thread Uwe Ligges
Simon Wood wrote: stats:::kruskal.test.default and how to get there: methods(kruskal.test) # note, you probably want the default method! getS3method(kruskal.test, default) Uwe On Mon, 17 Jan 2005 [EMAIL PROTECTED] wrote: I am using R 2.0.2 on a WinXP I am trying to get the code of the

Re: [R] find source code

2005-01-17 Thread TEMPL Matthias
of a function under Windows and R2.0.1? Thanks in advance, Matthias Betreff: Re: [R] find source code stats:::kruskal.test.default On Mon, 17 Jan 2005 [EMAIL PROTECTED] wrote: I am using R 2.0.2 on a WinXP I am trying to get the code of the Kruskal-Wallis test but kruskal.test function

RE: [R] find source code

2005-01-17 Thread Liaw, Andy
/ subdirectory after unpacking. This has nothing to do with hardware/software platform. .rda files are really only readable by R, regardless of platform, and R on Windows doesn't behave differently than on other OS in this respect. Andy Thanks in advance, Matthias Betreff: Re: [R] find source

Re: [R] find source code

2005-01-17 Thread Peter Dalgaard
TEMPL Matthias [EMAIL PROTECTED] writes: But how can I see the *documented* source code in Windows? I think i.e. in the /flexmix/library/man/all.rda file is the documented(?) code for all functions of Package flexmix, but the standard Windows XP cannot open .rda files correct. No that's not

Re: [R] find source code

2005-01-17 Thread TEMPL Matthias
-Ursprüngliche Nachricht- Von: Liaw, Andy [mailto:[EMAIL PROTECTED] Gesendet: Montag, 17. Jänner 2005 16:33 An: TEMPL Matthias; r-help@stat.math.ethz.ch Betreff: RE: [R] find source code From: TEMPL Matthias But how can I see the *documented* source code in Windows? I

Re: [R] find source code

2005-01-17 Thread r . ghezzo
Thanks to all who answered my query, I forgot completely to call methods() first to check the true whole name of the function. Heberto Ghezzo Quoting Uwe Ligges [EMAIL PROTECTED]: Simon Wood wrote: stats:::kruskal.test.default and how to get there: methods(kruskal.test) # note, you