seqconc(TraMineR)
seqconc()所属R语言包:TraMineR
Concatenate vectors of states or events into a character string
向量的状态或事件串连成一个字符串
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Concatenate vectors of states or events into a character string. In the string, each state is separated by 'sep'. The void elements in the input sequences are eliminated.
向量的状态或事件串连成一个字符串。在字符串中,每个国家分离“SEP”。无效输入序列中的元素被淘汰。
用法----------Usage----------
seqconc(data, var=NULL, sep="-", vname="Sequence", void=NA)
参数----------Arguments----------
参数:data
A dataframe or matrix containing sequence data.
一个数据框或矩阵的序列数据。
参数:var
List of the columns containing the sequences. Default is NULL in which case all columns are retained. Whether the sequences are in the compressed (character strings) or extended format is automatically detected by counting the number of columns.
的列中包含的序列的列表。默认是NULL在这种情况下,所有的列都保留。无论是在序列(字符串)的压缩或扩展格式被自动检测到计数的列数。
参数:sep
Character used as separator. By default, "-".
使用的字符作为分隔符。默认情况下,“-”。
参数:vname
an optional name for the variable containing the sequences. By default, "Sequence".
序列变量包含一个可选名称。默认情况下,"Sequence"。
参数:void
the code used for void elements appearing in the sequences (see <CITE>Gabadinho et al. (2008)</CITE> for more details on missing values and void elements in sequences). Default is NA.
使用的代码序列中出现的无效元素(见<CITE> Gabadinho等人(2008年)</ CITE>有关详细信息,遗漏值的和无效的元素序列)。默认是NA。
值----------Value----------
a vector of character strings, one for each row in the input data.
一个向量的字符串,一个用于输入数据中的每一行。
参考文献----------References----------
参见----------See Also----------
seqdecomp.
seqdecomp。
实例----------Examples----------
data(actcal)
actcal.string <- seqconc(actcal,13:24)
head(actcal.string)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|