GetJManyRows {jmatrix} | R Documentation |
GetJManyRows
Description
Returns (as a R numeric matrix) the rows with the requested row numbers from the matrix contained in a jmatrix binary file
Usage
GetJManyRows(fname, extrows)
Arguments
fname |
String with the file name that contains the binary data. |
extrows |
A numeric vector with the indexes of the rows to be extracted, in R-numbering (from 1) |
Value
A numeric matrix with the values of elements in the requested rows
Examples
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")
tmpfile1=paste0(tempdir(),"/Rfullfloat.bin")
JWriteBin(Rf,tmpfile1,dtype="float",dmtype="full",comment="Full matrix of floats")
Rf[c(1,4),]
vc<-GetJManyRows(tmpfile1,c(1,4))
vc
[Package jmatrix version 1.5.2 Index]