plot.stslist.modst(TraMineR)
plot.stslist.modst()所属R语言包:TraMineR
Plot method for modal state sequences
图模式状态序列的方法
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Plot method for output produced by the seqmodst function, i.e objects of class stslist.modst.
图方法为输出的seqmodst功能,即类stslist.modst的对象。
用法----------Usage----------
## S3 method for class 'stslist.modst'
plot(x, cpal = NULL, ylab = NULL, yaxis = TRUE, xaxis = TRUE,
xtlab = NULL, xtstep = NULL, cex.plot = 1, ...)
参数----------Arguments----------
参数:x
an object of class stslist.modst as produced by the seqmodst function.
类的一个对象stslist.modst产生的seqmodst函数。
参数:cpal
alternative color palette to use for the states. If user specified, a vector of colors with number of elements equal to the number of states in the alphabet. By default, the 'cpal' attribute of the x object is used.
替代调色板使用的状态。如果用户指定的颜色与数量相等的元素的数量在字母表中的一个向量。默认情况下,“CPAL x对象的属性。
参数:ylab
an optional label for the y axis. If set to NA, no label is drawn.
一个可选的标签为Y轴。如果设置为NA,没有标签的绘制。
参数:yaxis
if TRUE (default) the y axis is plotted.
如果是TRUE(默认值)y轴的绘制。
参数:xaxis
if TRUE (default) the x axis is plotted.
如果是TRUE(默认值)x轴的绘制。
参数:xtlab
optional labels for the x axis ticks. If unspecified, the names attribute of the x object is used.
可选的标签为x轴的刻度线。如果未指定,names属性x对象。
参数:xtstep
optional interval at which the tick-marks and labels of the x-axis are displayed. For example, with xtstep=3 a tick-mark is drawn at position 1, 4, 7, etc... The display of the corresponding labels depends on the available space and is dealt with automatically. If unspecified, the xtstep attribute of the x object is used.
可选的时间间隔被显示的x-轴的刻度标记和标签。例如,对于xtstep = 3刻度线标记绘制在位置1,4,7,等。..的相应的标签的显示取决于可用的空间和自动处理。如果未指定,xtstep属性x对象。
参数:cex.plot
expansion factor for setting the size of the font for the axis labels and names. The default value is 1. Values lesser than 1 will reduce the size of the font, values greater than 1 will increase the size.
设置轴标签和名称的字体的大小扩展系数。默认值是1。跌幅小于1的值,将减少的字体的大小的值大于1的大小会增加。
参数:...
further graphical parameters. For more details about the graphical parameter arguments, see barplot and par.
进一步的图形参数。有关图形的参数的更多详细信息,请参阅barplot和par。
Details
详细信息----------Details----------
This is the plot method for the output produced by the seqmodst function, i.e. objects of class stslist.modst. It produces a plot showing the sequence of modal states with bar width proportional to the state frequencies.
This method is called by the generic seqplot function (if type="ms") that produces more sophisticated plots, allowing grouping and automatic display of the states legend. The seqmsplot function is a shortcut for calling seqplot with type="ms".
调用此方法的通用seqplot函数(如果type="ms"),产生更复杂的图,允许分组和自动显示的传说。 seqmsplot函数调用seqplottype="ms"的快捷方式。
实例----------Examples----------
## Defining a sequence object with the data in columns 10 to 25[#定义一个序列对象中的数据列10至25]
## (family status from age 15 to 30) in the biofam data set[#(家庭状况从15岁至30日)在biofam数据集]
data(biofam)
biofam.lab <- c("Parent", "Left", "Married", "Left+Marr",
"Child", "Left+Child", "Left+Marr+Child", "Divorced")
biofam.seq <- seqdef(biofam, 10:25, labels=biofam.lab)
## Modal state sequence[#模态的状态序列]
biofam.modst <- seqmodst(biofam.seq)
plot(biofam.modst)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|