├── .Rbuildignore ├── .gitattributes ├── .github └── workflows │ └── check-standard.yaml ├── .gitignore ├── DESCRIPTION ├── LICENSE ├── Makefile ├── NAMESPACE ├── NEWS.md ├── R ├── RcppExports.R ├── bind.r ├── collect.r ├── construct.r ├── dim.r ├── dimnames.r ├── filter.r ├── flatten.r ├── intersect.r ├── intersect_list.r ├── lambda.r ├── like.r ├── map.r ├── mask.r ├── match.r ├── melt.r ├── narray-package.r ├── rep.r ├── split.r ├── stack.r ├── subset.r ├── translate.r ├── util.r └── which.r ├── README.md ├── man ├── bind.Rd ├── collect.Rd ├── construct.Rd ├── dim.Rd ├── dimnames.Rd ├── drop_if.Rd ├── filter.Rd ├── flatten.Rd ├── grapes-or-grapes.Rd ├── guess_structure.Rd ├── intersect.Rd ├── intersect_list.Rd ├── lambda.Rd ├── like.Rd ├── map.Rd ├── map_one.Rd ├── mask.Rd ├── match.Rd ├── melt.Rd ├── named_dots.Rd ├── narray.Rd ├── pb.Rd ├── rep.Rd ├── restore_null_dimnames.Rd ├── split.Rd ├── stack.Rd ├── subset.Rd ├── translate.Rd ├── vectors_to_row_or_col.Rd └── which.Rd ├── src ├── RcppExports.cpp └── stack.cpp ├── tests ├── testthat.R └── testthat │ ├── test-bind.r │ ├── test-construct.r │ ├── test-dimnames.r │ ├── test-intersect.r │ ├── test-lambda.r │ ├── test-map.r │ ├── test-mask.r │ ├── test-melt.r │ ├── test-rep.r │ ├── test-split.r │ ├── test-stack.r │ ├── test-subset.r │ └── test-translate.r └── vignettes ├── construct.png ├── intersect.png ├── map.png ├── mask.png ├── narray.Rmd ├── split.png └── stack.png /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | *.png diff=exif 2 | -------------------------------------------------------------------------------- /.github/workflows/check-standard.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/.github/workflows/check-standard.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/.gitignore -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/Makefile -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/RcppExports.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/RcppExports.R -------------------------------------------------------------------------------- /R/bind.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/bind.r -------------------------------------------------------------------------------- /R/collect.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/collect.r -------------------------------------------------------------------------------- /R/construct.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/construct.r -------------------------------------------------------------------------------- /R/dim.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/dim.r -------------------------------------------------------------------------------- /R/dimnames.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/dimnames.r -------------------------------------------------------------------------------- /R/filter.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/filter.r -------------------------------------------------------------------------------- /R/flatten.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/flatten.r -------------------------------------------------------------------------------- /R/intersect.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/intersect.r -------------------------------------------------------------------------------- /R/intersect_list.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/intersect_list.r -------------------------------------------------------------------------------- /R/lambda.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/lambda.r -------------------------------------------------------------------------------- /R/like.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/like.r -------------------------------------------------------------------------------- /R/map.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/map.r -------------------------------------------------------------------------------- /R/mask.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/mask.r -------------------------------------------------------------------------------- /R/match.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/match.r -------------------------------------------------------------------------------- /R/melt.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/melt.r -------------------------------------------------------------------------------- /R/narray-package.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/narray-package.r -------------------------------------------------------------------------------- /R/rep.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/rep.r -------------------------------------------------------------------------------- /R/split.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/split.r -------------------------------------------------------------------------------- /R/stack.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/stack.r -------------------------------------------------------------------------------- /R/subset.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/subset.r -------------------------------------------------------------------------------- /R/translate.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/translate.r -------------------------------------------------------------------------------- /R/util.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/util.r -------------------------------------------------------------------------------- /R/which.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/R/which.r -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/README.md -------------------------------------------------------------------------------- /man/bind.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/bind.Rd -------------------------------------------------------------------------------- /man/collect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/collect.Rd -------------------------------------------------------------------------------- /man/construct.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/construct.Rd -------------------------------------------------------------------------------- /man/dim.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/dim.Rd -------------------------------------------------------------------------------- /man/dimnames.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/dimnames.Rd -------------------------------------------------------------------------------- /man/drop_if.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/drop_if.Rd -------------------------------------------------------------------------------- /man/filter.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/filter.Rd -------------------------------------------------------------------------------- /man/flatten.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/flatten.Rd -------------------------------------------------------------------------------- /man/grapes-or-grapes.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/grapes-or-grapes.Rd -------------------------------------------------------------------------------- /man/guess_structure.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/guess_structure.Rd -------------------------------------------------------------------------------- /man/intersect.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/intersect.Rd -------------------------------------------------------------------------------- /man/intersect_list.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/intersect_list.Rd -------------------------------------------------------------------------------- /man/lambda.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/lambda.Rd -------------------------------------------------------------------------------- /man/like.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/like.Rd -------------------------------------------------------------------------------- /man/map.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/map.Rd -------------------------------------------------------------------------------- /man/map_one.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/map_one.Rd -------------------------------------------------------------------------------- /man/mask.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/mask.Rd -------------------------------------------------------------------------------- /man/match.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/match.Rd -------------------------------------------------------------------------------- /man/melt.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/melt.Rd -------------------------------------------------------------------------------- /man/named_dots.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/named_dots.Rd -------------------------------------------------------------------------------- /man/narray.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/narray.Rd -------------------------------------------------------------------------------- /man/pb.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/pb.Rd -------------------------------------------------------------------------------- /man/rep.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/rep.Rd -------------------------------------------------------------------------------- /man/restore_null_dimnames.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/restore_null_dimnames.Rd -------------------------------------------------------------------------------- /man/split.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/split.Rd -------------------------------------------------------------------------------- /man/stack.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/stack.Rd -------------------------------------------------------------------------------- /man/subset.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/subset.Rd -------------------------------------------------------------------------------- /man/translate.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/translate.Rd -------------------------------------------------------------------------------- /man/vectors_to_row_or_col.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/vectors_to_row_or_col.Rd -------------------------------------------------------------------------------- /man/which.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/man/which.Rd -------------------------------------------------------------------------------- /src/RcppExports.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/src/RcppExports.cpp -------------------------------------------------------------------------------- /src/stack.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/src/stack.cpp -------------------------------------------------------------------------------- /tests/testthat.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/tests/testthat.R -------------------------------------------------------------------------------- /tests/testthat/test-bind.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/tests/testthat/test-bind.r -------------------------------------------------------------------------------- /tests/testthat/test-construct.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/tests/testthat/test-construct.r -------------------------------------------------------------------------------- /tests/testthat/test-dimnames.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/tests/testthat/test-dimnames.r -------------------------------------------------------------------------------- /tests/testthat/test-intersect.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/tests/testthat/test-intersect.r -------------------------------------------------------------------------------- /tests/testthat/test-lambda.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/tests/testthat/test-lambda.r -------------------------------------------------------------------------------- /tests/testthat/test-map.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/tests/testthat/test-map.r -------------------------------------------------------------------------------- /tests/testthat/test-mask.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/tests/testthat/test-mask.r -------------------------------------------------------------------------------- /tests/testthat/test-melt.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/tests/testthat/test-melt.r -------------------------------------------------------------------------------- /tests/testthat/test-rep.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/tests/testthat/test-rep.r -------------------------------------------------------------------------------- /tests/testthat/test-split.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/tests/testthat/test-split.r -------------------------------------------------------------------------------- /tests/testthat/test-stack.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/tests/testthat/test-stack.r -------------------------------------------------------------------------------- /tests/testthat/test-subset.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/tests/testthat/test-subset.r -------------------------------------------------------------------------------- /tests/testthat/test-translate.r: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/tests/testthat/test-translate.r -------------------------------------------------------------------------------- /vignettes/construct.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/vignettes/construct.png -------------------------------------------------------------------------------- /vignettes/intersect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/vignettes/intersect.png -------------------------------------------------------------------------------- /vignettes/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/vignettes/map.png -------------------------------------------------------------------------------- /vignettes/mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/vignettes/mask.png -------------------------------------------------------------------------------- /vignettes/narray.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/vignettes/narray.Rmd -------------------------------------------------------------------------------- /vignettes/split.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/vignettes/split.png -------------------------------------------------------------------------------- /vignettes/stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mschubert/narray/HEAD/vignettes/stack.png --------------------------------------------------------------------------------