Description Usage Arguments Value See Also Examples
Get the maximum of all wells or (a) specified one(s), or
their smallest maximum. The OPMS
method
works by calling the OPM
method on all
plates and then determining the overall maximum or
overall minimum of the maxima.
1 2 3 4 5 6 7 8 9 |
x |
|
... |
Coordinate of one to several wells. If
missing, the maximum or smallest of all wells is
returned. See |
na.rm |
Logical scalar. See |
Numeric scalar.
base::max base::min
Other getter-functions: aggr_settings
,
aggregated
, anyDuplicated
,
anyNA
, contains
,
csv_data
, dim
,
disc_settings
, discretized
,
duplicated
, has_aggr
,
has_disc
, hours
,
measurements
, seq
,
subset
, thin_out
,
well
1 2 3 4 5 6 7 8 9 10 11 12 13 | # OPM method
(x <- max(vaas_1))
(y <- max(vaas_1, 1)) # this is the negative control
stopifnot(x > y) # i.e., some stronger reactions present
(x <- minmax(vaas_1))
stopifnot(max(vaas_1) > x) # obviously
# OPMS method
(x <- max(vaas_4))
(y <- max(vaas_4, 1)) # this is the negative control
stopifnot(x > y) # i.e., some stronger reactions present
(x <- minmax(vaas_4))
stopifnot(max(vaas_4) > x) # obviously
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.