├── .Rbuildignore ├── .gitignore ├── .travis.yml ├── CRAN-RELEASE ├── DESCRIPTION ├── NAMESPACE ├── NEWS.md ├── R ├── attributes.R ├── extdata.R ├── long_matrix.R ├── lookup.R ├── omxr.R ├── read_write_omx.R └── utils-pipe.R ├── README.Rmd ├── README.md ├── cran-comments.md ├── inst └── extdata │ └── skims.omx ├── man ├── create_omx.Rd ├── gather_matrix.Rd ├── get_omx_attr.Rd ├── list_omx.Rd ├── long_matrix.Rd ├── omxr.Rd ├── omxr_example.Rd ├── pipe.Rd ├── read_all_omx.Rd ├── read_lookup.Rd ├── read_omx.Rd ├── read_selected_omx.Rd ├── skims.omx.Rd ├── write_all_omx.Rd ├── write_lookup.Rd ├── write_matrix_attr.Rd └── write_omx.Rd ├── omxr.Rproj └── vignettes └── omx.Rmd /.Rbuildignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/.Rbuildignore -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .Rproj.user 2 | .Rhistory 3 | .RData 4 | -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/.travis.yml -------------------------------------------------------------------------------- /CRAN-RELEASE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/CRAN-RELEASE -------------------------------------------------------------------------------- /DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/DESCRIPTION -------------------------------------------------------------------------------- /NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/NAMESPACE -------------------------------------------------------------------------------- /NEWS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/NEWS.md -------------------------------------------------------------------------------- /R/attributes.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/R/attributes.R -------------------------------------------------------------------------------- /R/extdata.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/R/extdata.R -------------------------------------------------------------------------------- /R/long_matrix.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/R/long_matrix.R -------------------------------------------------------------------------------- /R/lookup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/R/lookup.R -------------------------------------------------------------------------------- /R/omxr.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/R/omxr.R -------------------------------------------------------------------------------- /R/read_write_omx.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/R/read_write_omx.R -------------------------------------------------------------------------------- /R/utils-pipe.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/R/utils-pipe.R -------------------------------------------------------------------------------- /README.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/README.Rmd -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/README.md -------------------------------------------------------------------------------- /cran-comments.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/cran-comments.md -------------------------------------------------------------------------------- /inst/extdata/skims.omx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/inst/extdata/skims.omx -------------------------------------------------------------------------------- /man/create_omx.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/man/create_omx.Rd -------------------------------------------------------------------------------- /man/gather_matrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/man/gather_matrix.Rd -------------------------------------------------------------------------------- /man/get_omx_attr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/man/get_omx_attr.Rd -------------------------------------------------------------------------------- /man/list_omx.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/man/list_omx.Rd -------------------------------------------------------------------------------- /man/long_matrix.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/man/long_matrix.Rd -------------------------------------------------------------------------------- /man/omxr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/man/omxr.Rd -------------------------------------------------------------------------------- /man/omxr_example.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/man/omxr_example.Rd -------------------------------------------------------------------------------- /man/pipe.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/man/pipe.Rd -------------------------------------------------------------------------------- /man/read_all_omx.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/man/read_all_omx.Rd -------------------------------------------------------------------------------- /man/read_lookup.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/man/read_lookup.Rd -------------------------------------------------------------------------------- /man/read_omx.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/man/read_omx.Rd -------------------------------------------------------------------------------- /man/read_selected_omx.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/man/read_selected_omx.Rd -------------------------------------------------------------------------------- /man/skims.omx.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/man/skims.omx.Rd -------------------------------------------------------------------------------- /man/write_all_omx.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/man/write_all_omx.Rd -------------------------------------------------------------------------------- /man/write_lookup.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/man/write_lookup.Rd -------------------------------------------------------------------------------- /man/write_matrix_attr.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/man/write_matrix_attr.Rd -------------------------------------------------------------------------------- /man/write_omx.Rd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/man/write_omx.Rd -------------------------------------------------------------------------------- /omxr.Rproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/omxr.Rproj -------------------------------------------------------------------------------- /vignettes/omx.Rmd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/gregmacfarlane/omxr/HEAD/vignettes/omx.Rmd --------------------------------------------------------------------------------