Re: [R] Non-visible functions are asterisked

2008-03-08 Thread roger koenker
short answer: non-visible means that they are not exported from a package with a namespace so that they are "not found" if you just type the name. However, you can see these functions if you use getAnywhere(fname) longer answer: see the section on namespaces in the writing R extensions

Re: [R] Non-visible functions are asterisked

2008-03-08 Thread Muenchen, Robert A (Bob)
Thank you all very much! Bob > -Original Message- > From: [EMAIL PROTECTED] [mailto:[EMAIL PROTECTED] > project.org] On Behalf Of Muenchen, Robert A (Bob) > Sent: Saturday, March 08, 2008 10:49 AM > To: [EMAIL PROTECTED] > Subject: [R] Non-visible functions are aste

Re: [R] Non-visible functions are asterisked

2008-03-08 Thread Gabor Grothendieck
It means that the package has not exported it so normally you would not access it directly. For example, for summary.princomp you would normally pass a princomp object to the summary generic. If you did want to access summary.princomp directly, since it has not been exported, you can use the form

Re: [R] Non-visible functions are asterisked

2008-03-08 Thread Berwin A Turlach
G'day Bob, On Sat, 8 Mar 2008 10:48:49 -0500 "Muenchen, Robert A (Bob)" <[EMAIL PROTECTED]> wrote: > What does the non-visible mean? Type at the command line > summary.aov and hit return. Note, leave out the `()'. Now type at the command line > summary.princomp That should illustrate what

Re: [R] Non-visible functions are asterisked

2008-03-08 Thread Duncan Murdoch
On 08/03/2008 10:48 AM, Muenchen, Robert A (Bob) wrote: > Dear R-Helpers, > > I suspect I'm about to ask a FAQ, but I haven't been able to find an > answer in the FAQ, AItR or an R Site Search. When I look at the methods > of summary (below) it says, "Non-visible functions are asterisked". I > loo

[R] Non-visible functions are asterisked

2008-03-08 Thread Muenchen, Robert A (Bob)
Dear R-Helpers, I suspect I'm about to ask a FAQ, but I haven't been able to find an answer in the FAQ, AItR or an R Site Search. When I look at the methods of summary (below) it says, "Non-visible functions are asterisked". I looked at the help file for summary.princomp, which did not comment on