buildFrame(VBmix)
buildFrame()所属R语言包:VBmix
buildFrame
buildFrame
译者:生物统计家园网 机器人LoveR
描述----------Description----------
builds a data frame from a matrix of elements and a vector of numeric labels.
构建一个数据框的元素从一个矩阵和一个向量的数值标签。
用法----------Usage----------
buildFrame(datamatrix, labels, dims = 1:2)
参数----------Arguments----------
参数:datamatrix
matrix of row-elements.
矩阵的行元素。
参数:labels
vector of numeric labels.
矢量的数字标签。
参数:dims
subset of variables extracted from datamatrix.
子集提取DataMatrix二维变量。
值----------Value----------
built data frame.
内置的数据框。
(作者)----------Author(s)----------
Pierrick Bruneau
实例----------Examples----------
irisdata[c(1,7,35,56,131),]
# returns:[返回:]
# Sepal.Length Sepal.Width Petal.Length Petal.Width[Sepal.Length Sepal.Width Petal.Length Petal.Width]
#[1,] 5.1 3.5 1.4 0.2[[1] 5.1 3.5 1.4 0.2]
#[2,] 4.6 3.4 1.4 0.3[[2] 4.6 3.4 1.4 0.3]
#[3,] 4.9 3.1 1.5 0.2[[3] 4.9 3.1 1.5 0.2]
#[4,] 5.7 2.8 4.5 1.3[[4] 5.7 2.8 4.5 1.3]
#[5,] 7.4 2.8 6.1 1.9[[5] 7.4 2.8 6.1 1.9]
irislabels[c(1,7,35,56,131)]
# returns:[返回:]
#[1] 1 1 1 2 3[[1] 1 1 1 2 3]
temp <- buildFrame(irisdata, irislabels, dims=1:4)
转载请注明:出自 生物统计家园网(http://www.biostatistic.net)。
注:
注1:为了方便大家学习,本文档为生物统计家园网机器人LoveR翻译而成,仅供个人R语言学习参考使用,生物统计家园保留版权。
注2:由于是机器人自动翻译,难免有不准确之处,使用时仔细对照中、英文内容进行反复理解,可以帮助R语言的学习。
注3:如遇到不准确之处,请在本贴的后面进行回帖,我们会逐渐进行修订。
|