Description Usage Arguments Value See Also Examples
Compute the interquartile range for a vector.
NOTE: This man page is for the IQR
S4 generic function
defined in the BiocGenerics package.
See ?stats::IQR
for the default method
(defined in the stats package).
Bioconductor packages can define specific methods for objects
not supported by the default method.
1 |
x, na.rm, type |
See |
See ?stats::IQR
for the value returned by the
default method.
Specific methods defined in Bioconductor packages should behave as consistently as possible with the default method.
stats::IQR
for the default
IQR
method.
showMethods
for displaying a summary of the
methods defined for a given generic function.
selectMethod
for getting the definition of
a specific method.
BiocGenerics for a summary of all the generics defined in the BiocGenerics package.
1 2 3 | IQR
showMethods("IQR")
selectMethod("IQR", "ANY") # the default method
|
Loading required package: parallel
Attaching package: ‘BiocGenerics’
The following objects are masked from ‘package:parallel’:
clusterApply, clusterApplyLB, clusterCall, clusterEvalQ,
clusterExport, clusterMap, parApply, parCapply, parLapply,
parLapplyLB, parRapply, parSapply, parSapplyLB
The following objects are masked from ‘package:stats’:
IQR, mad, sd, var, xtabs
The following objects are masked from ‘package:base’:
anyDuplicated, append, as.data.frame, basename, cbind, colnames,
dirname, do.call, duplicated, eval, evalq, Filter, Find, get, grep,
grepl, intersect, is.unsorted, lapply, Map, mapply, match, mget,
order, paste, pmax, pmax.int, pmin, pmin.int, Position, rank,
rbind, Reduce, rownames, sapply, setdiff, sort, table, tapply,
union, unique, unsplit, which.max, which.min
standardGeneric for "IQR" defined from package "BiocGenerics"
function (x, na.rm = FALSE, type = 7)
standardGeneric("IQR")
<bytecode: 0x557b882d7188>
<environment: 0x557b882d1230>
Methods may be defined for arguments: x
Use showMethods("IQR") for currently available ones.
Function: IQR (package BiocGenerics)
x="ANY"
Method Definition (Class "derivedDefaultMethod"):
function (x, na.rm = FALSE, type = 7)
diff(quantile(as.numeric(x), c(0.25, 0.75), na.rm = na.rm, names = FALSE,
type = type))
<bytecode: 0x557b88b5fd28>
<environment: namespace:stats>
Signatures:
x
target "ANY"
defined "ANY"
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.