shift.column(useful)
shift.column()所属R语言包:useful
shift.column
shift.column
译者:生物统计家园网 机器人LoveR
描述----------Description----------
Shift a column of data
按住Shift键的一列数据
用法----------Usage----------
shift.column(data, columns,
newNames = sprintf("%s.Shifted", columns), len = 1L,
up = TRUE)
参数----------Arguments----------
参数:data
data.frame
data.frame
参数:columns
Character vector specifying which columns to shift.
字符转移的列向量确定。
参数:newNames
Character vector specifying new names for the columns that will be created by the shift. Must be same length as columns.
字符向量的转变,将创建的列指定新的名字。必须是相同的长度,columns。
参数:len
Integer specifying how many rows to shift the data.
Integer,指定多少行的数据转移。
参数:up
logical indicating if rows should be shifted up or down.
逻辑行是否应该上移或下移。
Details
详细信息----------Details----------
Shifts a column of data up or down a certain number of rows
位移向上或向下一定数目的行的一列数据
值----------Value----------
data.frame with the specified columns shifted.
data.frame指定列的转移。
(作者)----------Author(s)----------
Jared P. Lander
实例----------Examples----------
myData <- data.frame(Upper=LETTERS, lower=letters)
shift.column(data=myData, columns="lower")
shift.column(data=myData, columns="lower", len=2)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|