Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kaneplusplus/bigmemory
https://github.com/kaneplusplus/bigmemory
Last synced: 6 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/kaneplusplus/bigmemory
- Owner: kaneplusplus
- Created: 2014-11-28T17:14:24.000Z (about 10 years ago)
- Default Branch: master
- Last Pushed: 2024-01-09T17:18:08.000Z (about 1 year ago)
- Last Synced: 2025-01-06T03:06:50.454Z (13 days ago)
- Language: C++
- Size: 935 KB
- Stars: 126
- Watchers: 13
- Forks: 24
- Open Issues: 36
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - kaneplusplus/bigmemory - (C++)
README
[![CRAN_Status_Badge](http://www.r-pkg.org/badges/version/bigmemory)](http://cran.r-project.org/package=bigmemory)
[![R-CMD-check](https://github.com/kaneplusplus/bigmemory/workflows/R-CMD-check/badge.svg)](https://github.com/kaneplusplus/bigmemory/actions)
[![Coverage Status](https://coveralls.io/repos/kaneplusplus/bigmemory/badge.svg)](https://coveralls.io/r/kaneplusplus/bigmemory)
[![rstudio mirror downloads](http://cranlogs.r-pkg.org/badges/bigmemory?color=blue)](https://github.com/metacran/cranlogs.app)
[![rstudio mirror downloads](http://cranlogs.r-pkg.org/badges/grand-total/bigmemory?color=blue)](https://github.com/metacran/cranlogs.app)
[![Research software impact](http://depsy.org/api/package/cran/bigmemory/badge.svg)](http://depsy.org/package/r/bigmemory)bigmemory
=========Create, store, access, and manipulate massive matrices. Matrices are, by default, allocated to shared memory and may use memory-mapped files. Packages ‘biganalytics’, ‘synchronicity’, ‘bigalgebra’, and ‘bigtabulate’ provide advanced functionality. Access to and manipulation of a ‘big.matrix’ object is exposed in by an S4 class whose interface is simlar to that of an ‘matrix’. Use of these packages in parallel environments can provide substantial speed and memory efficiencies. ‘bigmemory’ also provides a C++ framework for the development of new tools that can work both with ‘big.matrix’ and native ‘matrix’ objects.
```{R}
x <- big.matrix(5, 2, type="integer", init=0,
dimnames=list(NULL, c("alpha", "beta")))
x
x[1:2,]
x[,1] <- 1:5
x[,"alpha"]
colnames(x)
options(bigmemory.allow.dimnames=TRUE)
colnames(x) <- NULL
x[,]
```### Wish List
1. Additional big.matrix subclasses (e.g. sparse, positive-definite, etc.)
-- see bigalgrebra package
2. big.sparse.matrix.