buildFrame: buildFrame

Description Usage Arguments Value Author(s) Examples

View source: R/displayScatter.R

Description

builds a data frame from a matrix of elements and a vector of numeric labels.

Usage

1
buildFrame(datamatrix, labels, dims = 1:2)

Arguments

datamatrix

matrix of row-elements.

labels

vector of numeric labels.

dims

subset of variables extracted from datamatrix.

Value

built data frame.

Author(s)

Pierrick Bruneau

Examples

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
irisdata[c(1,7,35,56,131),]
# returns:
#         Sepal.Length Sepal.Width Petal.Length Petal.Width
#[1,]          5.1         3.5          1.4         0.2
#[2,]          4.6         3.4          1.4         0.3
#[3,]          4.9         3.1          1.5         0.2
#[4,]          5.7         2.8          4.5         1.3
#[5,]          7.4         2.8          6.1         1.9
irislabels[c(1,7,35,56,131)]
# returns:
#[1] 1 1 1 2 3
temp <- buildFrame(irisdata, irislabels, dims=1:4)

VBmix documentation built on May 30, 2017, 2:34 a.m.

Related to buildFrame in VBmix...