The filematrix
package provides functions to create and access
large matrices stored in files, not computer memory.
Filematrices can be as large as the storage allows.
The package has been tested on matrices multiple terabytes in size.
File matrices can be created using functions fm.create
,
fm.create.from.matrix
, or fm.create.from.text.file
:
# setwd("D:/") library(knitr) # opts_knit$set(root.dir=tempdir())
library(filematrix) fm = fm.create(filenamebase = "fmat", nrow = 200, ncol = 200, type = "double")
The code above creates two files:
fmatrix.bmat
which stores the filematrix values, and
fmatrix.desc.txt
which stores the filematrix description,
such as dimensions, data type, and data type size.
Here is the content of the description file:
cat(readLines("fmat.desc.txt"), sep = "\n")
The elements of a filematrix can be read and written to
using the same syntax as is used for regular R matrices.
Any changes to a filematrix are written to the .bmat
file
without extra buffering.
fm[1:3, 1:2] = 1:6 fm[1:4, 1:3] colSums(fm[,1:4])
Elements of a filematrix can also be accessed as elements of a vector
(in which elements proceed sequentially down columns stacked 1:n).
Thus, as fm
has nrow(fm)
rows, fm[1,2]
accesses
the same element as fm[nrow(fm)+1]
.
fm[1:4] fm[nrow(fm)+1:4]
File matrices can also have row and column names, like regular R matrices.
colnames(fm) = paste0("Col", 1:ncol(fm)) rownames(fm) = paste0("Row", 1:nrow(fm))
The row and column names of the filematrix fm
are stored in fmatrix.nmsrow.txt
and fmatrix.nmscol.txt
respectively.
An open filematrix object can be closed with close
function. This closes the internal file handle (connection).
Closing filematrix objects is optional, changes would not be lost if the object is not closed.
close(fm)
An existing filematrix can be opened with fm.open
.
fm = fm.open(filenamebase = "fmat", readonly = FALSE)
To prevent any changes to the values of the filematrix set readonly = TRUE
.
An existing filematrix that would fit in memory can be loaded fully with fm.load
mat = fm.load("fmat")
The values of a filematrix are stored by columns, as with regular R matrices:
matrix(1:12, nrow = 3, ncol = 4)
Thus, access to a filematrix values by columns is much faster than access by rows:
timerow = system.time( { sum(fm[1:10, ]) } )[3] timecol = system.time( { sum(fm[ ,1:10]) } )[3] cat("Reading ", nrow(fm)*10, " values from 10 columns takes ", timecol, " seconds", "\n", "Reading ", ncol(fm)*10, " values from 10 rows takes ", timerow, " seconds", "\n", sep = "")
The performance difference may not be observed
on small matrices, as in this example.
Change the size from r nrow(fm)
x r ncol(fm)
to
10,000 x 10,000 to see the difference
(it is at least hundred fold).
Unlike with regular R matrices, columns can be appended to the right side of a filematrix with very little computational overhead.
dim(fm) fm$appendColumns(nrow(fm):1) fm$appendColumns(1:nrow(fm)) dim(fm) fm[nrow(fm)+(-1:0), ncol(fm)+(-1:0)]
If you no longer need a filematrix and want to delete its files from the hard drive and close the object,
please use closeAndDeleteFiles()
closeAndDeleteFiles(fm)
sessionInfo()
Any scripts or data that you put into this service are public.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.