houba
Manipulation of (Large) Memory-Mapped Objects (Vectors, Matrices and Arrays)
v0.1.2
·
Jun 27, 2026
·
CeCILL-2
Description
Manipulate data through memory-mapped files, as vectors, matrices or arrays. Basic arithmetic functions are implemented, but currently no matrix arithmetic. Can write and read descriptor files for compatibility with the 'bigmemory' package.
Downloads
176
Last 30 days
23248th
501
Last 90 days
1.3K
Last year
Trend: +57.1% (30d vs prior 30d)
CRAN Check Status
13
OK
Show all 13 flavors
| Flavor | Status |
|---|---|
| r-devel-linux-x86_64-debian-clang | OK |
| r-devel-linux-x86_64-debian-gcc | OK |
| r-devel-linux-x86_64-fedora-clang | OK |
| r-devel-linux-x86_64-fedora-gcc | OK |
| r-devel-windows-x86_64 | OK |
| r-oldrel-macos-arm64 | OK |
| r-oldrel-macos-x86_64 | OK |
| r-oldrel-windows-x86_64 | OK |
| r-patched-linux-x86_64 | OK |
| r-release-linux-x86_64 | OK |
| r-release-macos-arm64 | OK |
| r-release-macos-x86_64 | OK |
| r-release-windows-x86_64 | OK |
Check History
OK 12 OK · 0 NOTE · 0 WARNING · 0 ERROR · 0 FAILURE Apr 25, 2026
ERROR 11 OK · 0 NOTE · 0 WARNING · 3 ERROR · 0 FAILURE Mar 10, 2026
ERROR
r-oldrel-macos-arm64
installed package size
installed size is 5.8Mb
sub-directories of 1Mb or more:
libs 5.2Mb
ERROR
r-oldrel-macos-x86_64
installed package size
installed size is 5.8Mb
sub-directories of 1Mb or more:
libs 5.1Mb
ERROR
r-oldrel-windows-x86_64
tests
Running 'apply.r' [1s]
Running 'arithmetic.r' [2s]
Running 'as-array.r' [1s]
Running 'colSums.r' [1s]
Running 'copy.r' [1s]
Running 'create.r' [1s]
Running 'dim.r' [1s]
Running 'extract-replace.r' [1s]
Running 'inplace.r' [1s]
Runni
...[truncated]...
all(a[1,] == c(1, 7, 13)) )
>
> a <- marray("double", 2:4)
> a[] <- 1:24
> stopifnot( all(a[2,1,] == c(2, 8, 14, 20)) )
Error in a[2, 1, ] : argument is missing, with no default
Calls: stopifnot -> [ -> [ -> myMissing
Execution halted