MFIerror {MBmca} | R Documentation |
Multiple comparison of the temperature dependent variance of the refMFI
Description
MFIerror is used for a fast multiple comparison of the temperature dependent variance of the refMFI. MFIerror returns an object of the class data.frame with columns “Temperature”, “Location” (Mean, Median), “Deviation” (Standard Deviation, Median Absolute Deviation) and “Coefficient of Variation”.
Usage
MFIerror(
x,
y,
CV = FALSE,
RSD = FALSE,
rob = FALSE,
errplot = TRUE,
type = "p",
pch = 19,
length = 0.05,
col = "black"
)
Arguments
x |
is the column of a data frame for the temperature. |
y |
are multiple columns of fluorescence values from a
|
CV |
If |
RSD |
Setting the option |
rob |
Using the option |
errplot |
sets |
type |
is a graphical parameter setting the plot use lines, points or
both (see |
pch |
is a graphical parameter used to define the symbol used in the plot. |
length |
|
col |
|
Value
res |
returns a |
Author(s)
Stefan Roediger
See Also
Examples
# First Example
# Temperature dependent variance of the refMFI using standard measures
# (Mean, Standard Deviation (SD)).
# Use Standard Deviation (SD) in the plot
data(MultiMelt)
MFIerror(MultiMelt[, 1], MultiMelt[, c(2L:13)])
# Second Example
# Temperature dependent relative variance of the refMFI using robust
# measures (Median, Median Absolute Deviation (MAD)). The parameter
# errplot is set to FALSE in order to prevent the plot of the
# coefficient of variation versus the temperature.
MFIerror(MultiMelt[, 1], MultiMelt[, c(2L:13)], errplot = FALSE,
RSD = TRUE, rob = TRUE)
# Third Example
# Temperature dependent relative variance of the refMFI using
# robust measures (Median, Median Absolute Deviation (MAD)).
MFIerror(MultiMelt[, 1], MultiMelt[, c(2L:13)], RSD = TRUE,
rob = TRUE)