ID EN
Math Functions

mean

R Base 3.6.2 🇮🇩 Bahasa Indonesia

Fungsi generik untuk mean aritmatika (yang dipangkas).

Syntax

R
mean(x, &#8230;)<p></p><p># S3 method for default
mean(x, trim = 0, na.rm = FALSE, &#8230;)</p>

Arguments

Parameter Deskripsi
x An R object. Currently there are methods for numeric/logical vectors and date, date-time and time interval objects. Complex vectors are allowed for trim = 0, only.
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 NA values should be stripped before the computation proceeds.
&#8230; further arguments passed to or from other methods.

Return Value

Jika trim adalah nol (default), mean aritmatika dari nilai-nilai dalam x dihitung, sebagai vektor numerik atau kompleks dengan panjang satu. Jika x tidak logis (dipaksa menjadi numerik), numerik (termasuk bilangan bulat) atau kompleks, NA_real_ dikembalikan, dengan peringatan. Jika trim bukan nol, mean yang dipangkas secara simetris dihitung dengan sebagian kecil observasi trim yang dihapus dari setiap ujung sebelum mean dihitung.

Contoh

Example
R
# NOT RUN {
x <- c(0:10, 50)
xm <- mean(x)
c(xm, mean(x, trim = 0.10))
# }

See Also

weighted.mean mean.POSIXct colMeans for row and column means.