Message-ID: <2d1ebb110809091624n51f42b5yac3ab31b23753b47@mail.gmail.com>
Date: 2008-09-09T23:24:12Z
From: Edna Bell
Subject: probably easy methods question
Dear R Gurus:
I want to look at the code for the t.test function. I did the following:
> t.test
function (x, ...)
UseMethod("t.test")
<environment: namespace:stats>
> getAnywhere("t.test")
A single object matching 't.test' was found
It was found in the following places
package:stats
registered S3 method for t from namespace stats
namespace:stats
with value
function (x, ...)
UseMethod("t.test")
<environment: namespace:stats>
> methods("t.test")
[1] t.test.default* t.test.formula*
Non-visible functions are asterisked
>
Ok. Now what, please? I'm sure it's really simple.
Thanks,
Edna Bell