Learn R Programming

Rrepest (version 1.5.4)

weighted.mode: 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)))

Value

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

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.

Examples

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

Run the code above in your browser using DataLab