arulesSequences (version 0.2-19)

times-methods: Compute Time Statistics of Sequences

Description

Computes the gaps, the minimum or maximum gap, or the span of sequences.

Usage

# S4 method for timedsequences
times(x, type = c("times", "gaps", "mingap", "maxgap", "span"))

Arguments

x

an object.

type

a string value specifying the type of statistic.

Value

If type = "items" returns a list of vectors of events times corresponding with the elements of a sequence.

If type = "gaps" returns a list of vectors of time differences between consecutive elements of a sequence.

Otherwise, a vector corresponding with the elements of x.

See Also

Class '>sequences, '>timedsequences, method size, itemFrequency, timeFrequency.

Examples

Run this code
# NOT RUN {
## continue example
example("timedsequences-class")

##
times(z)
times(z, "gaps")

## all defined
times(z, "span")

## crosstab
table(size = size(z), span = times(z, "span"))
# }

Run the code above in your browser using DataLab