alphabet(TraMineR)
alphabet()所属R语言包:TraMineR
Get or set the alphabet of a sequence object
获取或设置字母序列对象
译者:生物统计家园网 机器人LoveR
描述----------Description----------
This function gets or sets the (short) labels associated to the states in the alphabet of a sequence object (the list of all possible states, some of which states may not appear in the data).
这个函数获取或设置(短)标签的序列对象(列表中的所有可能的状态,其中一些国家可能不会出现在数据)中的字母相关联的状态。
用法----------Usage----------
alphabet(seqdata)
alphabet(seqdata) <- value
参数----------Arguments----------
参数:seqdata
a state sequence object as defined with the seqdef function.
一个状态序列对象定义seqdef功能。
参数:value
a character vector of the same length as the vector returned by the alphabet function, i.e. one label for each state in the alphabet.
一个字符向量,返回矢量alphabet功能,即在字母表中的每一个状态标签的长度相同。
Details
详细信息----------Details----------
A state sequence object — created with the seqdef function — stores sequences as a matrix where columns are factors. The levels of the factors are made of the alphabet as well as the codes for missing value and void elements. The alphabet function retrieves or sets the "alphabet" attribute of the sequence object.
一个状态序列对象 - 创建的seqdef功能 - 存储序列作为一个矩阵,其中列的因素。水平的因素中作出的字母表以及缺失值的和无效的元素的代码。的字母检索或设置的“字母”序列对象的属性。
值----------Value----------
For 'alphabet' a character vector containing the alphabet.
对于“alphabet包含的字母字符向量。
For 'alphabet <-' the updated sequence object.
“alphabet <-更新的序列对象。
参见----------See Also----------
seqdef
seqdef
实例----------Examples----------
## Creating a sequence object with the columns 13 to 24 [#创建一个序列对象列13至24]
## in the 'actcal' example data set[#在“actcal”示例数据集]
data(actcal)
actcal.seq <- seqdef(actcal,13:24)
## Retrieving the alphabet[#检索字母]
alphabet(actcal.seq)
## Setting the alphabet[#设定的字母]
alphabet(actcal.seq) <- c("FT", "PT", "LT", "NO")
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|