Description Usage Arguments Details Value See Also Examples
View source: R/summarization.R
Performs the summarization step by calculating the central points and variation estimates of logFC values from the input data.
1 2 3 4 5 6 7 8 9 10 11 12 | geva.summarize(
ginput,
summary.method = options.summary,
variation.method = options.variation,
...
)
options.summary
# c("mean", "median")
options.variation
# c("sd", "var", "mad")
|
ginput |
a |
summary.method |
single |
variation.method |
single |
... |
additional arguments. Accepts |
The options.summary
refer to the available operations to calculate central logFC values (mean
or median
), whereas options.variation
presents three functions to calculate logFC variation (sd
: Standard Deviation; var
: Variance; and mad
: Median Absolute Deviation).
Moreover, all those operations include a weighted counterpart applied using the weights
table from the GEVAInput
object.
A GEVASummary
object
stats::var()
, stats::sd()
, stats::mad()
1 2 3 4 | ## Summarization of a randomly generated input
ginput <- geva.ideal.example() # Generates a random input example
gsummary <- geva.summarize(ginput) # Summarizes with the default parameters
plot(gsummary) # Plots the summarized data
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.