Description Usage Arguments Value Author(s) See Also Examples
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”.
1 2 3 4 5 6 7 8 9 10 11 12 |
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 |
|
res |
returns a |
Stefan Roediger
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 | # 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)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.