Description Usage Arguments Value Examples
View source: R/SummarizeData.R
SummarizeData
returns summary statistics for a numeric vector.
1 | SummarizeData(x, na.rm = FALSE)
|
x |
a numeric vector |
na.rm |
option to remove NAs. Default is FALSE. |
A numeric vector with length of x, percent NA, percent 0, mean, standard deviation, standard error, variance, and quantile values.
1 2 3 | SummarizeData(1:10)
SummarizeData(c(1:10, NA))
SummarizeData(c(1:10, NA), na.rm = TRUE)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.