jmatrix

Loading package

library(jmatrix)

Purpose

The package jmatrix (Domingo (2023a)) was originally conceived as a tool for other packages, namely parallelpam (Domingo (2023b)) and scellpam (Domingo (2023c)) which needed to deal with very big matrices which might not fit in the memory of the computer, particularly if their elements are of type double (in most modern machines, 8 bytes per element) whereas they could fit if they were matrices of other data types, in particular of floats (4 bytes per element).

Unfortunately, R is not a strongly typed language. Double is the default type in R and it is not easy to work with other data types. Trials like the package float (Schmidt (2022)) have been done, but to use them you have to coerce a matrix already loaded in R memory to a float matrix, and then you can delete it. But, what happens if you computer has not memory enough to hold the matrix in the first place?. This is the problem this package tries to address.

Our idea is to use the disk as temporarily storage of the matrix in a file with a internal binary format (jmatrix format). This format has a header of 128 bytes with information like type of matrix (full, sparse or symmetric), data type of each element (char, short, int, long, float, double or long double), number of rows and columns and endianness; then comes the content as binary data (in sparse matrices zeros are not stored; in symmetric matrices only the lower-diagonal is stored) and finally the metadata (currently, names for rows/columns if needed and an optional comment).

Such files are created and loaded by functions written in C++ which are accessible from R with Rcpp (Eddelbuettel and François (2011)). The file, once loaded, uses strictly the needed memory for its data type and can be processed by other C++ functions (like the PAM algorithm or any other numeric library written in C++) also from inside R.

The matrix contained in a binary data file in jmatrix format cannot be loaded directly in R memory as a R matrix (that would be impossible, anyway, since precisely this package is done for the cases in which such matrix would NOT fit into the available RAM). Nevertheless, limited access through some functions is provided to read one or more rows or one or more columns as R vectors or matrices (obviously, coerced to double).

The package jmatrix must not be considered as a final, finished software. Currently is mostly an instrumental solution to address our needs and we make available as a separate package just in case it could be useful for anyone else.

Workflow

Debug messages

First of all, the package can show quite informative (but sometimes verbose) messages in the console. To turn on/off such messages you can use.

JMatrixSetDebug(TRUE)
#> Debugging for jmatrix package set to ON.
# Initially, state of debug is FALSE.

Data storage

As stated before, the binary matrix files should normally be created from C++ getting the data from an external source like a data file in a format used in bioinformatics or a .csv file. These files should be read by chunks. As an example, look at function CsvToJMat in package scellpam.

As a convenience and only for testing purposes (to be used in this vignette), we provide the function JWriteBin to write a R matrix as a jmatrix file.

# Create a 6x8 matrix of random values
Rf <- matrix(runif(48),nrow=6)
# Set row and column names for it
rownames(Rf) <- c("A","B","C","D","E","F")
colnames(Rf) <- c("a","b","c","d","e","f","g","h")
# Let's see the matrix
Rf
#>            a         b         c         d         e          f         g
#> A 0.04411296 0.3800161 0.6283516 0.2449921 0.9440364 0.62333845 0.8675149
#> B 0.86659460 0.9611185 0.2435004 0.7796847 0.9107587 0.97319098 0.5952432
#> C 0.60360263 0.1418360 0.6657420 0.3623987 0.5906075 0.22238719 0.8955514
#> D 0.16051932 0.4327096 0.9591262 0.4681624 0.9860021 0.07698278 0.8351670
#> E 0.41968573 0.1192595 0.3446909 0.3666031 0.6623571 0.54564693 0.3883584
#> F 0.57974574 0.5920045 0.2323100 0.1875771 0.2793974 0.63914288 0.2411949
#>            h
#> A 0.00600692
#> B 0.67882980
#> C 0.97550534
#> D 0.80250785
#> E 0.18024502
#> F 0.64303680
# and write it as the binary file Rfullfloat.bin
JWriteBin(Rf,"Rfullfloat.bin",dtype="float",dmtype="full",
          comment="Full matrix of floats")
#> The passed matrix has row names for the 6 rows and they will be used.
#> The passed matrix has column names for the 8 columns and they will be used.
#> Writing binary matrix Rfullfloat.bin of (6x8)
#> End of block of binary data at offset 320
#>    Writing row names (6 strings written, from A to F).
#>    Writing column names (8 strings written, from a to h).
#>    Writing comment: Full matrix of floats
# Also, you can write it with double data type:
JWriteBin(Rf,"Rfulldouble.bin",dtype="double",dmtype="full",
          comment="Full matrix of doubles")
#> The passed matrix has row names for the 6 rows and they will be used.
#> The passed matrix has column names for the 8 columns and they will be used.
#> Writing binary matrix Rfulldouble.bin of (6x8)
#> End of block of binary data at offset 512
#>    Writing row names (6 strings written, from A to F).
#>    Writing column names (8 strings written, from a to h).
#>    Writing comment: Full matrix of doubles

To get information about the stored file the function JMatInfo is provided. Of course, this funcion does not read the complete file in memory but just the header.

# Information about the float binary file
JMatInfo("Rfullfloat.bin")
#> File:               Rfullfloat.bin
#> Matrix type:        FullMatrix
#> Number of elements: 48
#> Data type:          float
#> Endianness:         little endian (same as this machine)
#> Number of rows:     6
#> Number of columns:  8
#> Metadata:           Stored names of rows and columns.
#> Metadata comment:  "Full matrix of floats"
# Same information about the double binary file
JMatInfo("Rfulldouble.bin")
#> File:               Rfulldouble.bin
#> Matrix type:        FullMatrix
#> Number of elements: 48
#> Data type:          double
#> Endianness:         little endian (same as this machine)
#> Number of rows:     6
#> Number of columns:  8
#> Metadata:           Stored names of rows and columns.
#> Metadata comment:  "Full matrix of doubles"

A jmatrix binary file can be exported to .csv/.tsv table. This is done with the function JMatToCsv

# Create a 6x8 matrix of random values
Rf <- matrix(runif(48),nrow=6)
# Set row and column names for it
rownames(Rf) <- c("A","B","C","D","E","F")
colnames(Rf) <- c("a","b","c","d","e","f","g","h")
# Store it as the binary file Rfullfloat.bin
JWriteBin(Rf,"Rfullfloat.bin",dtype="float",dmtype="full",
          comment="Full matrix of floats")
#> The passed matrix has row names for the 6 rows and they will be used.
#> The passed matrix has column names for the 8 columns and they will be used.
#> Writing binary matrix Rfullfloat.bin of (6x8)
#> End of block of binary data at offset 320
#>    Writing row names (6 strings written, from A to F).
#>    Writing column names (8 strings written, from a to h).
#>    Writing comment: Full matrix of floats
# Save the content of this .bin as a .csv file
JMatToCsv("Rfullfloat.bin","Rfullfloat.csv",csep=",",withquotes=FALSE)
#> Read full matrix with size (6,8)

The generated file will not have quotes neither around the column names (in its first line) nor around each row name (at the beginning of each line) since withquotes is FALSE but it can be set to TRUE for the opposite behavior. Also, a .tsv (tabulator separated values) would have been generated using csep=“\t”.

Also, a jmatrix binary file can also be generated from a .csv/.tsv file. Such file must have a first line with the names of the columns (possibly surrounded by double quotes, including a first empty double-quote, since the column of row names has no name itself). The rest of its lines must start with a string (possibly surrounded by double quotes) with the row name and the values. In all cases (first line and data lines) each column must be separated from the next by a separation character (usually, a comma). No separation character must be added at the end of each line. This format is compatible with the .csv generated by R with the function write.csv.

The function to read .csv files is CsvToJMat

# Create a 6x8 matrix of random values
Rf <- matrix(runif(48),nrow=6)
# Set row and column names for it
rownames(Rf) <- c("A","B","C","D","E","F")
colnames(Rf) <- c("a","b","c","d","e","f","g","h")
# Save it as a .csv file with the standard R function...
write.csv(Rf,"rf.csv")
# ...and read it to create a jmatrix binary file
CsvToJMat("rf.csv","rf.bin",mtype="full",csep=",",ctype="raw",valuetype="float",transpose=FALSE,comment="Test matrix generated reading a .csv file")
#> 8 columns of values (not including the column of names) in file rf.csv.
#> 6 lines (excluding header) in file rf.csv
#> Data will be read from each line and stored as float values.
#> Reading line... 0 
#> Read 6 data lines of file rf.csv, as expected.
#> Writing binary matrix rf.bin of (6x8)
#> End of block of binary data at offset 320
#>    Writing row names (6 strings written, from "A" to "F").
#>    Writing column names (8 strings written, from "a" to "h").
#>    Writing comment: Test matrix generated reading a .csv file
# Let's see the characteristics of the binary file
JMatInfo("rf.bin")
#> File:               rf.bin
#> Matrix type:        FullMatrix
#> Number of elements: 48
#> Data type:          float
#> Endianness:         little endian (same as this machine)
#> Number of rows:     6
#> Number of columns:  8
#> Metadata:           Stored names of rows and columns.
#> Metadata comment:  "Test matrix generated reading a .csv file"

Special note for symmetric matrices:

The parameter mtype=“symmetric” will consider the content of the .csv file as a symmetric matrix. This implies that it must be a square matrix (same number of rows and columns) but the upper-diagonal matrix that must be present (it does not matter with which values) will be read, and immediately ignored, i.e.: only the lower-diagonal matrix (including the main diagonal) will be stored.

Data load

As stated before, no function is provided to read the whole matrix in memory which would contradict the philosophy of this package, but you can get rows or columns from a file.

# Reads row 1 into vector vf. Float values inside the file are
# promoted to double.
(vf<-GetJRow("Rfullfloat.bin",1))
#>         a         b         c         d         e         f         g         h 
#> 0.6945853 0.3001987 0.1727970 0.6274527 0.8286086 0.8151022 0.1513941 0.4025927

Obviously, storage in float provokes a loosing of precision. We have observed this not to be relevant for PAM (partitioning around medoids) algorihm but it can be important in other cases. It is the price to pay for halving the needed space.

# Checks the precision lost
max(abs(Rf[1,]-vf))
#> [1] 0.4798583

Nevertheless, storing as double obviously keeps the data intact.

vd<-GetJRow("Rfulldouble.bin",1)
max(abs(Rf[1,]-vd))
#> [1] 0.8321546

Now, let us see examples of some functions to read rows or columns by number or by name, or to read several rows/columns as a R matrix. In all examples numbers for rows and columns are in R-convention (i.e.  starting at 1)

# Read column number 3
(vf<-GetJCol("Rfullfloat.bin",3))
#>         A         B         C         D         E         F 
#> 0.1727970 0.8413592 0.3957875 0.2067984 0.3601720 0.7076326
# Test precision
max(abs(Rf[,3]-vf))
#> [1] 0.6468644
# Read row with name C
(vf<-GetJRowByName("Rfullfloat.bin","C"))
#>          a          b          c          d          e          f          g 
#> 0.46373969 0.73139423 0.39578748 0.31161380 0.23023453 0.97033602 0.09444133 
#>          h 
#> 0.45198801
# Read column with name c
(vf<-GetJColByName("Rfullfloat.bin","c"))
#>         A         B         C         D         E         F 
#> 0.1727970 0.8413592 0.3957875 0.2067984 0.3601720 0.7076326
# Get the names of all rows or columns as vectors of R strings
(rn<-GetJRowNames("Rfullfloat.bin"))
#> [1] "A" "B" "C" "D" "E" "F"
(cn<-GetJColNames("Rfullfloat.bin"))
#> [1] "a" "b" "c" "d" "e" "f" "g" "h"
# Get the names of rows and columns simultaneosuly as a list of two elements
(l<-GetJNames("Rfullfloat.bin"))
#> $rownames
#> [1] "A" "B" "C" "D" "E" "F"
#> 
#> $colnames
#> [1] "a" "b" "c" "d" "e" "f" "g" "h"
# Get several rows at once. The returned matrix has the rows in the
# same order as the passed list,
# and this list can contain even repeated values
(vm<-GetJManyRows("Rfullfloat.bin",c(1,4)))
#>           a         b         c         d          e         f         g
#> A 0.6945853 0.3001987 0.1727970 0.6274527 0.82860857 0.8151022 0.1513941
#> D 0.1751215 0.7152428 0.2067984 0.9934900 0.07458729 0.2142392 0.1021670
#>            h
#> A 0.40259266
#> D 0.04179494

# Of course, columns can be extrated equally
(vc<-GetJManyCols("Rfulldouble.bin",c(1,4)))
#>            a         d
#> A 0.04411296 0.2449921
#> B 0.86659460 0.7796847
#> C 0.60360263 0.3623987
#> D 0.16051932 0.4681624
#> E 0.41968573 0.3666031
#> F 0.57974574 0.1875771
# and similar functions are provided for extracting by names:
(vm<-GetJManyRowsByNames("Rfulldouble.bin",c("A","D")))
#>            a         b         c         d         e          f         g
#> A 0.04411296 0.3800161 0.6283516 0.2449921 0.9440364 0.62333845 0.8675149
#> D 0.16051932 0.4327096 0.9591262 0.4681624 0.9860021 0.07698278 0.8351670
#>            h
#> A 0.00600692
#> D 0.80250785
(vc<-GetJManyColsByNames("Rfulldouble.bin",c("a","d")))
#>            a         d
#> A 0.04411296 0.2449921
#> B 0.86659460 0.7796847
#> C 0.60360263 0.3623987
#> D 0.16051932 0.4681624
#> E 0.41968573 0.3666031
#> F 0.57974574 0.1875771

The package can manage and store sparse and symmetric matrices, too.

# Generation of a 6x8 sparse matrix
Rsp <- matrix(rep(0,48),nrow=6)
sparsity <- 0.1
nnz <- round(48*sparsity)
where <- floor(47*runif(nnz))
val <- runif(nnz)
for (i in 1:nnz)
{
 Rsp[floor(where[i]/8)+1,(where[i]%%8)+1] <- val[i]
}
rownames(Rsp) <- c("A","B","C","D","E","F")
colnames(Rsp) <- c("a","b","c","d","e","f","g","h")
# Let's see the matrix
Rsp
#>           a         b        c         d e f g h
#> A 0.0000000 0.6285386 0.000000 0.0000000 0 0 0 0
#> B 0.0000000 0.0000000 0.000000 0.8366985 0 0 0 0
#> C 0.0000000 0.0000000 0.000000 0.0000000 0 0 0 0
#> D 0.0000000 0.0000000 0.000000 0.5772549 0 0 0 0
#> E 0.0000000 0.0000000 0.000000 0.0000000 0 0 0 0
#> F 0.2794049 0.0000000 0.879329 0.0000000 0 0 0 0
# Write the matrix as sparse with type float
JWriteBin(Rsp,"Rspafloat.bin",dtype="float",dmtype="sparse",
          comment="Sparse matrix of floats")
#> The passed matrix has row names for the 6 rows and they will be used.
#> The passed matrix has column names for the 8 columns and they will be used.
#> Writing binary matrix Rspafloat.bin of (6x8)
#> End of block of binary data at offset 192
#>    Writing row names (6 strings written, from A to F).
#>    Writing column names (8 strings written, from a to h).
#>    Writing comment: Sparse matrix of floats

Notice that the condition of being a sparse matrix and the storage space used can be known with the matrix info.

JMatInfo("Rspafloat.bin")
#> File:               Rspafloat.bin
#> Matrix type:        SparseMatrix
#> Number of elements: 48
#> Data type:          float
#> Endianness:         little endian (same as this machine)
#> Number of rows:     6
#> Number of columns:  8
#> Metadata:           Stored names of rows and columns.
#> Metadata comment:  "Sparse matrix of floats"
#> Binary data size:   64 bytes, which is 33.3333% of the full matrix size (which would be 192 bytes).

Be careful: trying to store as sparse a matrix which is not (it has not a majority of 0-entries) works, but produces a matrix larger than the corresponding full matrix.

With respect to symmetric matrices, JWriteBin works the same way. Let us generate a \(7 \times 7\) symmetric matrix.

Rns <- matrix(runif(49),nrow=7)
Rsym <- 0.5*(Rns+t(Rns))
rownames(Rsym) <- c("A","B","C","D","E","F","G")
colnames(Rsym) <- c("a","b","c","d","e","f","g")
# Let's see the matrix
Rsym
#>           a         b         c         d         e         f         g
#> A 0.4669848 0.5948466 0.2415576 0.5026580 0.3453114 0.4013245 0.5732167
#> B 0.5948466 0.6042805 0.4737028 0.4381402 0.6833559 0.1302745 0.6474693
#> C 0.2415576 0.4737028 0.4427549 0.4017049 0.1780554 0.4234426 0.6783416
#> D 0.5026580 0.4381402 0.4017049 0.2192191 0.5971759 0.5662566 0.7206712
#> E 0.3453114 0.6833559 0.1780554 0.5971759 0.5616868 0.3768382 0.5576888
#> F 0.4013245 0.1302745 0.4234426 0.5662566 0.3768382 0.2818005 0.4185916
#> G 0.5732167 0.6474693 0.6783416 0.7206712 0.5576888 0.4185916 0.5274781
# Write the matrix as symmetric with type float
JWriteBin(Rsym,"Rsymfloat.bin",dtype="float",dmtype="symmetric",
          comment="Symmetric matrix of floats")
#> The passed matrix has row names for the 7 rows and they will be used.
#> Writing binary matrix Rsymfloat.bin
#> End of block of binary data at offset 240
#>    Writing row names (7 strings written, from A to G).
#>    Writing comment: Symmetric matrix of floats
# Get the information 
JMatInfo("Rsymfloat.bin")
#> File:               Rsymfloat.bin
#> Matrix type:        SymmetricMatrix
#> Number of elements: 49 (28 really stored)
#> Data type:          float
#> Endianness:         little endian (same as this machine)
#> Number of rows:     7
#> Number of columns:  7
#> Metadata:           Stored only names of rows.
#> Metadata comment:  "Symmetric matrix of floats"

Notice that if you store a R matrix which is NOT symmetric as a symmetric jmatrix, only the lower triangular part (including the main diagonal) will be saved. The upper-triangular part will be lost.

The functions to read rows/colums stated before works equally independently of the matrix character (full, sparse or symmetric) so you can play with them using the Rspafloat.bin and Rsymfloat.bin file to check they work.

Finally, if the jmatrix stored in a binary file has names associated to rows or columns, you can filter it using them and generate another jmatrix file with only the rows or columns you wish to keep. The function to do so is ‘FilterJMatByName’.

Rns <- matrix(runif(49),nrow=7)
rownames(Rns) <- c("A","B","C","D","E","F","G")
colnames(Rns) <- c("a","b","c","d","e","f","g")
# Let's see the matrix
Rns
#>           a           b          c          d         e         f          g
#> A 0.2351389 0.637442896 0.77013302 0.07011651 0.2844148 0.6416304 0.49771864
#> B 0.3700887 0.747360785 0.87973429 0.43999847 0.4466701 0.4310119 0.05825622
#> C 0.6103876 0.127748476 0.79831036 0.42113269 0.7635651 0.3878102 0.67409964
#> D 0.1552638 0.458318379 0.08011695 0.68115885 0.6143036 0.3684821 0.36950116
#> E 0.3018717 0.007969607 0.02405310 0.02288928 0.6838641 0.6247166 0.84867310
#> F 0.3271163 0.782855933 0.27497877 0.04529721 0.7407211 0.9690034 0.86152615
#> G 0.4440634 0.182893214 0.51945561 0.88672812 0.7973462 0.9310438 0.81021337
# Write the matrix as full with type float
JWriteBin(Rns,"Rfullfloat.bin",dtype="float",dmtype="full",
          comment="Full matrix of floats")
#> The passed matrix has row names for the 7 rows and they will be used.
#> The passed matrix has column names for the 7 columns and they will be used.
#> Writing binary matrix Rfullfloat.bin of (7x7)
#> End of block of binary data at offset 324
#>    Writing row names (7 strings written, from A to G).
#>    Writing column names (7 strings written, from a to g).
#>    Writing comment: Full matrix of floats
# Extract the first two and the last two columns
FilterJMatByName("Rfullfloat.bin",c("a","b","f","g"),"Rfullfloat_fourcolumns.bin",namesat="cols")
#> Read full matrix with size (7,7)
#> Writing binary matrix Rfullfloat_fourcolumns.bin of (7x4)
#> End of block of binary data at offset 240
#>    Writing row names (7 strings written, from A to G).
#>    Writing column names (4 strings written, from a to g).
#>    Writing comment: Full matrix of floats
# Let's load the matrix and let's see it
vm<-GetJManyRows("Rfullfloat_fourcolumns.bin",c(1,7))
vm
#>           a         b         f         g
#> A 0.2351389 0.6374429 0.6416304 0.4977186
#> G 0.4440634 0.1828932 0.9310439 0.8102134
Domingo, Juan. 2023a. Jmatrix: Read from/Write in Disks Matrices with Any Data Type in a Binary Format.
———. 2023b. Parallelpam: Applies the Partitioning-Around-Medoids (PAM) Clustering Algortihm to Big Sets of Data Using Parallel Implementation, If Several Cores Are Available.
———. 2023c. Scellpam: Applying Partitioning Around Medoids to Single Cell with High Number of Cells.
Eddelbuettel, Dirk, and Romain François. 2011. Rcpp: Seamless R and C++ Integration.” Journal of Statistical Software 40 (8): 1–18. https://doi.org/10.18637/jss.v040.i08.
Schmidt, Drew. 2022. float: 32-Bit Floats.” https://cran.r-project.org/package=float.