View source: R/measures_of_position.R
mean.leem | R Documentation |
Arithmetic mean Class method leem for the generic mean function
## S3 method for class 'leem'
mean(
x,
trim = 0,
na.rm = FALSE,
rounding = 2,
grouped = TRUE,
details = FALSE,
...
)
x |
R object (list) of class leem. Use |
trim |
The fraction (0 to 0.5) of observations to be trimmed from each end of x before the mean is computed. Values of trim outside that range are taken as the nearest endpoint. |
na.rm |
a logical value indicating whether |
rounding |
Numerical object. Rounds the values in its first argument to the specified number of decimal places (default |
grouped |
Logical object. Determines whether the measure of position result will be based on grouped data or not (default |
details |
Logical object. Details of data (default |
... |
further arguments passed to or from other methods. |
# Example 1
set.seed(10)
x <- rnorm(36, 100, 50)
y <- rbinom(36, 10, 0.8)
y |> new_leem(variable = "discrete") |> tabfreq() |> mean()
x |> new_leem(variable = "continuous") |> tabfreq() |> mean()
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.