Learn R Programming

TraMineRextras (version 0.2.2)

rowmode: Modal state of a variable

Description

Returns the modal state of a variable, e.g., the modal state in a sequence.

Usage

rowmode(v, except = NULL)

Arguments

v
A numerical or factor variable.
except
Vector of values that should be ignored; e.g., set except="*" to ignore missing states with default coding.

Value

  • The modal value

encoding

latin1

Details

The function tabulates the variable and returns the most frequent value.

See Also

table.

Examples

Run this code
data(actcal)
actcal.seq <- seqdef(actcal[1:10,13:24])
actcal.mod <- apply(as.matrix(actcal.seq), 1, rowmode)
head(actcal.mod)

Run the code above in your browser using DataLab