fun_stats | R Documentation |
Computes summary statistics for a numeric vector. This function is an S4 method for the generic 'fun_stats', specifically tailored for numeric vectors. It calculates the minimum, maximum, mean, and median values.
fun_stats(x)
x |
A numeric vector for which summary statistics are to be computed. |
A list containing the minimum, maximum, mean, and median of the input vector.
x <- c(1, 2, 3, 4, 5)
fun_stats(x)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.