search for: internalmethods

Displaying 6 results from an estimated 6 matches for "internalmethods".

2003 Dec 12
0
proofreading corrections (cvs) (PR#5730)
...Rd,v retrieving revision 1.9 diff -u -r1.9 NULL.Rd --- src/library/base/man/NULL.Rd 2003/05/13 14:14:31 1.9 +++ src/library/base/man/NULL.Rd 2003/12/12 15:44:47 @@ -22,7 +22,7 @@ } \details{ \code{is.null} is generic: you can write methods to handle - of specific classes of objects, see \link{InternalMethods}. + specific classes of objects, see \link{InternalMethods}. } \arguments{ \item{x}{an object to be tested or coerced.} Index: src/library/base/man/Random.Rd =================================================================== RCS file: /cvs/R/src/library/base/man/Random.Rd,v retrieving revisi...
2011 Feb 19
2
question about generics
Dear R People: Is there a way to determine which functions are generics, please? I looked for something like is.Generic, but no luck. Thanks in advance! Sincerely, Erin -- Erin Hodgess Associate Professor Department of Computer and Mathematical Sciences University of Houston - Downtown mailto: erinm.hodgess at gmail.com
2005 Feb 21
1
is.matrix(), as.matrix, & as(,"matrix")
Under help(matrix) it is written: 'is.matrix' tests if its argument is a (strict) matrix. It is generic: you can write methods to handle specific classes of objects, see InternalMethods. Further down, under "Details", the meaning of "strict" is explained more explicitly: 'is.matrix' returns 'TRUE' if 'x' is a matrix (i.e., it is _not_ a 'data.frame' and has a 'dim' attribute of length 2) and 'FALSE'...
2004 Sep 17
1
R CMD check does not checks for superfluous documentation (PR#7231)
Hi! Due to package maintenance I have removed some functions but forgot to update the coresponding Rd files. If R CMD check is checking for missing documentation entries why it does not check for documentation entries which tell the user about nonexisting funcitons? In my opinion checking for documentation entries that document non-existing functions is much more important than the other way
2009 Oct 13
2
Mac R spinning wheel with Package Manager (PR#14005)
...: 449 _thread_start + 34 (in libSystem.B.dylib) [0x945f6012] 449 __pthread_start + 321 (in libSystem.B.dylib) [0x945f6155] 449 ___NSThread__main__ + 308 (in Foundation) [0x91e039a4] 449 -[NSThread main] + 45 (in Foundation) [0x91e03dfd] 449 -[ISyncPlanWatcher(InternalMethods) _runQueue] + 701 (in SyncServicesUI) [0x15f78338] 449 -[NSConditionLock lockWhenCondition:] + 69 (in Foundation) [0x91e49b35] 449 -[NSConditionLock lockWhenCondition:beforeDate:] + 144 (in Foundation) [0x91e49bd0] 449 -[NSCondition waitUntilDate:] +...
2010 Aug 24
0
mlm for within subject design
...right direction? > > > > So first question: where is the `+` operation defined for tables? tables are a modification via attributes of matrices. > Is it > S4? How can I see the source code of S4 functions I don't think so, at least from reading: ?Arithmetic ?groupGeneric ?InternalMethods > (I'm not very > comfortable with S4)? Or in general how do I find all generic > functions > for a specific class? I can get all S3 implementations of plot with > methods(plot), I can get all S4 functions with getMethods(plot). But > I've no idea of how to find all metho...