View source: R/analyse_functions.R
summary_xvg | R Documentation |
summarize xvg data compute basic summary statistics (mean, sd, min, median, max) for each variable in one or more xvg_data objects.
summary_xvg(xvg_data, merge_results = FALSE)
xvg_data |
a list of class 'xvg_data' or a list containing multiple 'xvg_data' objects, as returned by |
merge_results |
logical, whether to combine results from multiple objects (default: FALSE). When TRUE, results will include a 'group' column identifying the source. |
a data.frame with columns:
(Optional) Source identifier when processing multiple objects with merge_results=TRUE.
Name of the variable (column) in the xvg data.
Arithmetic mean of that variable.
Standard deviation.
Minimum value.
Median value.
Maximum value.
path <- system.file("extdata/rmsd.xvg", package = "xvm")
xvg_data <- read_xvg(path)
summary_xvg(xvg_data)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.