int2char(VLMC)
int2char()所属R语言包:VLMC
Character - Integer Conversion
字符 - 整数转换
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Simple conversion utilities for character to integer conversion and vice versa.
简单的转换实用程序字符转换为整数,反之亦然。
用法----------Usage----------
int2char(i, alpha)
char2int(x, alpha)
参数----------Arguments----------
参数:i
integer vectors, typically in 0:m when alpha has m + 1 letters.
整数向量,通常在0:malpha有m + 1字母。
参数:alpha
character string with several letters, representing the alphabet.
几个字母,代表字母的字符串。
参数:x
character string, typically with letters from alpha.
字符串,通常用字母从alpha。
值----------Value----------
int2char() gives a string (length 1 character) with as many characters as length(i), by 0-indexing into the alphabet alpha.
int2char() length(i)0索引的字母alpha尽可能多的字符的字符串(长度为1个字符)。
char2int() gives an integer vector of length nchar(x) of integer codes according to alpha (starting at 0 !).
char2int()给出了一个整数向量的长度nchar(x)整数代码,根据alpha(从0开始)。
参见----------See Also----------
int2alpha() (which is used by int2char) and its inverse, int2alpha(), both working with vectors of single characters instead of multi-character strings.
int2alpha()(这是由int2char)和它的逆,int2alpha(),无论是工作与向量,而不是单个字符的多字符的字符串。
实例----------Examples----------
char2int("vlmc", paste(letters, collapse=""))
int2char(c(0:3, 3:1), "abcd")
int2char(c(1:0,3,3), "abc") # to eat ;-)[吃;-)]
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|