Rev 25360 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{groupGeneric}\alias{.Method}\alias{.Generic}\alias{.Group}\alias{.Class}\alias{Math}\alias{Math.data.frame}\alias{Math.factor}\alias{Ops}\alias{Ops.data.frame}\alias{Ops.factor}\alias{Ops.ordered}\alias{Summary}\alias{Summary.data.frame}\alias{Summary.factor}\alias{Arith}\alias{Compare}\alias{Complex}\alias{Math2}\title{Group Generic Functions}\description{Group generic functions can be defined with either S3 and S4 methods(with different groups). Methods are defined for the group of functionsas a whole.A method defined for an individual member of the group takesprecedence over a method defined for the group as a whole.When package \pkg{methods} is attached there are objects visible withthe names of the group generics: these functions should never becalled directly (a suitable error message will result if they are).}\synopsis{Math.data.frame(x, \dots)Math.factor(x, \dots)Ops.data.frame(e1, e2 = NULL)Ops.factor(e1, e2)Ops.ordered(e1, e2)Summary.data.frame(x, \dots)Summary.factor(x, \dots)}\usage{## S3 methods have prototypes:Math(x, \dots)Ops(e1, e2)Summary(x, \dots)## S4 methods have prototypes:Arith(e1, e2)Compare(e1, e2)Ops(e1, e2)Math(x)Math2(x, digits)Summary(x, \dots, na.rm = FALSE)Complex(z)}\arguments{\item{x, z, e1, e2}{objects.}\item{digits}{number of digits to be used in \code{round} or \code{signif}.}\item{\dots}{further arguments passed to or from methods.}\item{na.rm}{logical: should missing values be removed?}}\section{S3 Group Dispatching}{%% --------------- grep -nw DispatchGroup src/*/*[ch]There are three \emph{groups} for which S3 methods can be written, namelythe \code{"Math"}, \code{"Ops"} and \code{"Summary"} groups. Theseare not \R objects, but methods can be supplied for them and base \Rcontain \code{\link{factor}} and \code{\link{data.frame}} methods.(There is also a \code{\link{ordered}} method for \code{Ops}.)% A function \emph{\code{f}} belonging to one of these groups must be% \code{\link{.Internal}} or \code{\link{.Primitive}} and will% automatically be using \emph{\code{<grp>.<class> (ob)}} when% \emph{\code{f(<ob>)}} is called, \emph{\code{f}} belongs to group% \emph{\code{<grp>}} and \emph{\code{<ob>}} is of% \code{\link[base]{class}} \emph{\code{<class>}}.\enumerate{\item Group \code{"Math"}:\itemize{\item\code{abs}, \code{sign}, \code{sqrt}, \cr\code{floor}, \code{ceiling}, \code{trunc},\cr\code{round}, \code{signif}\item \code{exp}, \code{log}, \cr\code{cos}, \code{sin}, \code{tan},\cr\code{acos}, \code{asin}, \code{atan}\code{cosh}, \code{sinh}, \code{tanh},\cr\code{acosh}, \code{asinh}, \code{atanh}\item\code{lgamma}, \code{gamma}, \code{gammaCody},\cr\code{digamma}, \code{trigamma}, \code{tetragamma},\code{pentagamma}% do_math1() [arithmetic.c:794]: if (DispatchGroup("Math",...))%%% "atan", "round", "log", "signif":% do_atan() [arithmetic.c:958]: if (DispatchGroup("Math", ..))% do_round() [arithmetic.c:981]: if (DispatchGroup("Math", ..))% do_log() [arithmetic.c:1011]:if (DispatchGroup("Math", ..))% do_signif()[arithmetic.c:1034]:if (DispatchGroup("Math", ..))\item \code{cumsum}, \code{cumprod}, \code{cummax}, \code{cummin}% do_cum() [cum.c:140]: if (DispatchGroup("Math", ...))}\item Group \code{"Ops"}:\itemize{\item\code{"+"}, \code{"-"}, \code{"*"}, \code{"/"},\code{"^"}, \code{"\%\%"}, \code{"\%/\%"}% do_arith() [arithmetic.c:240]: if (DispatchGroup("Ops", ...))\item \code{"&"}, \code{"|"}, \code{"!"}% do_logic() [logic.c:32]: if (DispatchGroup("Ops",...))\item \code{"=="}, \code{"!="},\code{"<"}, \code{"<="}, \code{">="}, \code{">"}% do_relop() [relop.c:35]: if (DispatchGroup("Ops", ...))}\item Group \code{"Summary"}:\itemize{\item \code{all}, \code{any}% do_logic3()[logic.c:278]: if(DispatchGroup("Summary", ...))\item \code{sum}, \code{prod}% /*NOMORE:\code{mean}, */\item \code{min}, \code{max}% do_summary() [summary.c:322]: if(DispatchGroup("Summary",...))\item \code{range}}}The number of arguments supplied for \code{"Math"} group genericmethods is not checked prior to dispatch. (Prior to \R 1.7.0, allthose whose default method has one argument were checked, but theothers were not.)}\section{S4 Group Dispatching}{When package \pkg{methods} is attached, formal (S4) methods can bedefined for groups.The functions belonging to the various groups are as follows:\describe{\item{\code{Arith}}{\code{"+"}, \code{"-"}, \code{"*"}, \code{"^"},\code{"\%\%"}, \code{"\%/\%"}, \code{"/"}}\item{\code{Compare}}{\code{"=="}, \code{">"}, \code{"<"},\code{"!="}, \code{"<="}, \code{">="}}\item{\code{Ops}}{\code{"Arith"}, \code{"Compare"}}\item{\code{Math}}{\code{"log"}, \code{"sqrt"}, \code{"log10"},\code{"cumprod"}, \code{"abs"}, \code{"acos"}, \code{"acosh"},\code{"asin"}, \code{"asinh"}, \code{"atan"}, \code{"atanh"},\code{"ceiling"}, \code{"cos"}, \code{"cosh"}, \code{"cumsum"},\code{"exp"}, \code{"floor"}, \code{"gamma"}, \code{"lgamma"},\code{"sin"}, \code{"sinh"}, \code{"tan"}, \code{"tanh"},\code{"trunc"}}\item{\code{Math2}}{\code{"round"}, \code{"signif"}}\item{\code{Summary}}{\code{"max"}, \code{"min"}, \code{"range"},\code{"prod"}, \code{"sum"}, \code{"any"}, \code{"all"}}\item{\code{Complex}}{\code{"Arg"}, \code{"Conj"}, \code{"Im"},\code{"Mod"}, \code{"Re"}}}Functions with the group names exist in the \pkg{methods} package butshould not be called directly.All the functions in these groups (other than the group genericsthemselves) are basic functions in R. They are not by default S4 genericfunctions, and many of them are defined as primitives, meaning thatthey do not have formal arguments. However, you can still defineformal methods for them. The effect of doing so is to create an S4 genericfunction with the appropriate arguments, in the environment where themethod definition is to be stored. It all works more or less as youmight expect, admittedly via a bit of trickery in the background.}\references{Appendix A, \emph{Classes and Methods} of\crChambers, J. M. and Hastie, T. J. eds (1992)\emph{Statistical Models in S.}Wadsworth & Brooks/Cole.}\seealso{\code{\link{methods}} for methods of non-Internal generic functions.}\examples{methods("Math")methods("Ops")methods("Summary")d.fr <- data.frame(x=1:9, y=rnorm(9))data.class(1 + d.fr) == "data.frame" ##-- add to d.f. ...}\keyword{methods}