Learn R Programming

parallelpam (version 1.0)

GetJManyCols: GetJManyCols

Description

Returns (as a R numeric matrix) the columns with the requested column numbers from the matrix contained in a jmatrix binary file

Usage

GetJManyCols(fname, extcols)

Value

A numeric matrix with the values of elements in the requested columns

Arguments

fname

String with the file name that contains the binary data.

extcols

A numeric vector with the indexes of the columns to be extracted, in R-numbering (from 1)

Examples

Run this code
Rf <- matrix(runif(48),nrow=6)
rownames(Rf) <- c("A","B","C","D","E","F")
colnames(Rf) <- c("a","b","c","d","e","f","g","h")
JWriteBin(Rf,"Rfullfloat.bin",dtype="float",dmtype="full",comment="Full matrix of floats")
Rf[,c(1,4)]
vc<-GetJManyCols("Rfullfloat.bin",c(1,4))
vc
file.remove("Rfullfloat.bin")

Run the code above in your browser using DataLab