weighted.mode: Mode

View source: R/Mode.R

weighted.modeR Documentation

Mode

Description

Calculate the arithmetic mode of a vector. If multiple elements have the same frequency, all of them will be displayed.

Usage

weighted.mode(x, w = rep(1, length(x)))

Arguments

x

(numeric vector) vector from which we'll obtain the mode

w

(numeric vector) vector of weights. If not provided, it defaults to non-weighted mode.

Value

(numeric vector) one or multiple elements that will be the arithmetic mode

Examples

weighted.mode(c(1,2,3,4,5,4,3,4,5,3))
weighted.mode(c(NA,1,3,NA))

Rrepest documentation built on April 4, 2025, 2:07 a.m.