TraMineR (version 2.2-0.1)

plot.subseqelist: Plot frequencies of subsequences

Description

Plot frequencies of subsequences.

Usage

# S3 method for subseqelist
plot(x, freq=NULL,cex=1,...)

Arguments

x

The subsequences to plot (a subseqelist object

freq

The frequencies to plot, support if NULL

cex

Plotting text and symbols magnification. See par.

arguments passed to barplot

See Also

seqefsub

Examples

Run this code
# NOT RUN {
## loading data
data(actcal.tse)

## creating sequences
actcal.eseq <- seqecreate(actcal.tse)

## Looking for frequent subsequences
fsubseq <- seqefsub(actcal.eseq,pmin.support=0.01)

## Frequence of first ten subsequences
plot(fsubseq[1:10], cex=2)
plot(fsubseq[1:10])

# }

Run the code above in your browser using DataLab