Nothing
### =========================================================================
### The pmax(), pmin(), pmax.int() and pmin.int() generics
### -------------------------------------------------------------------------
###
### Need to explicitly define those generics otherwise the implicit generics
### in package "base" would dispatch on 'na.rm'.
###
### Note that dispatching on '...' is supported starting with R 2.8.0 only.
### setGeneric() cannot be used on "max" and "min":
### > setGeneric("max", signature="...")
### Error in setGeneric("max", signature = "...") :
### ‘max’ is a primitive function; methods can be defined, but the
### generic function is implicit, and cannot be changed.
#setGeneric("max", signature="...")
#setGeneric("min", signature="...")
setGeneric("pmax", signature="...")
apply_hotfix73465(getGeneric("pmax"))
setGeneric("pmin", signature="...")
apply_hotfix73465(getGeneric("pmin"))
setGeneric("pmax.int", signature="...")
apply_hotfix73465(getGeneric("pmax.int"))
setGeneric("pmin.int", signature="...")
apply_hotfix73465(getGeneric("pmin.int"))
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.