cpal | R Documentation |
This function gets or sets the color palette of a sequence object, that is, the list of colors used to represent the states.
cpal(seqdata)
cpal(seqdata) <- value
seqdata |
a state sequence object as defined by the |
value |
a vector containing the colors, of length equal to the number of states in the alphabet. The colors can be passed as character strings representing color names such as returned by the |
In the plot functions provided for visualizing sequence objects, a different color is associated to each state of the alphabet. The color palette is defined when creating the sequence object, either automatically or by specifying a user defined color vector. The cpal
function can be used to get or set the color palette of a previously defined sequence object.
For 'cpal(seqdata)
' a vector containing the colors.
For 'cpal(seqdata) <-
' the updated sequence object.
Alexis Gabadinho
seqdef
## Creating a sequence object with the columns 13 to 24
## in the 'actcal' example data set
## The color palette is automatically set
data(actcal)
actcal.seq <- seqdef(actcal,13:24)
## Retrieving the color palette
cpal(actcal.seq)
seqiplot(actcal.seq)
## Setting a user defined color palette
cpal(actcal.seq) <- c("blue","red", "green", "yellow")
seqiplot(actcal.seq)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.