Hi R Gurus: I know that "plot" has extra things like plot.ts, plot.lm How would i find out all of them, please? Thanks, Edna
The methods that an S3 generic function has are found via methods(plot) See ?methods ?getAnywhere ?":::" On 8/4/07, Edna Bell <edna.bell01 at gmail.com> wrote:> Hi R Gurus: > > I know that "plot" has extra things like plot.ts, plot.lm > > How would i find out all of them, please? > > Thanks, > Edna > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. >
methods(plot) --- Edna Bell <edna.bell01 at gmail.com> wrote:> Hi R Gurus: > > I know that "plot" has extra things like plot.ts, plot.lm > > How would i find out all of them, please? > > Thanks, > Edna > > ______________________________________________ > R-help at stat.math.ethz.ch mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide > http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. >
thank you! On 8/4/07, Gabor Grothendieck <ggrothendieck at gmail.com> wrote:> The methods that an S3 generic function has are found via > methods(plot) > See > ?methods > ?getAnywhere > ?":::" > > > On 8/4/07, Edna Bell <edna.bell01 at gmail.com> wrote: > > Hi R Gurus: > > > > I know that "plot" has extra things like plot.ts, plot.lm > > > > How would i find out all of them, please? > > > > Thanks, > > Edna > > > > ______________________________________________ > > R-help at stat.math.ethz.ch mailing list > > https://stat.ethz.ch/mailman/listinfo/r-help > > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > > and provide commented, minimal, self-contained, reproducible code. > > >