├── .gitignore ├── Makefile ├── README.md ├── paper ├── Makefile ├── jss.bst ├── jss.cls ├── jss5097.Rnw ├── jss5097.bib ├── jsslogo.jpg ├── notes │ ├── Makefile │ └── notes.tex ├── orcidlink.sty ├── reviews │ └── D- 5097 post comments.txt └── setup.R └── pkg ├── DESCRIPTION ├── NAMESPACE ├── NEWS ├── R ├── accumulate.R ├── helpers.R ├── producers.R └── utils.R ├── data └── producers.rda ├── inst ├── CITATION └── tinytest │ ├── test_accumulate.R │ ├── test_helpers.R │ ├── test_internals.R │ ├── test_object_list.R │ └── test_utils.R ├── tests └── tinytest.R └── vignettes ├── introduction.md └── style.css /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/.gitignore -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/README.md -------------------------------------------------------------------------------- /paper/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/paper/Makefile -------------------------------------------------------------------------------- /paper/jss.bst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/paper/jss.bst -------------------------------------------------------------------------------- /paper/jss.cls: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/paper/jss.cls -------------------------------------------------------------------------------- /paper/jss5097.Rnw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/paper/jss5097.Rnw -------------------------------------------------------------------------------- /paper/jss5097.bib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/paper/jss5097.bib -------------------------------------------------------------------------------- /paper/jsslogo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/paper/jsslogo.jpg -------------------------------------------------------------------------------- /paper/notes/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/paper/notes/Makefile -------------------------------------------------------------------------------- /paper/notes/notes.tex: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/paper/notes/notes.tex -------------------------------------------------------------------------------- /paper/orcidlink.sty: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/paper/orcidlink.sty -------------------------------------------------------------------------------- /paper/reviews/D- 5097 post comments.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/paper/reviews/D- 5097 post comments.txt -------------------------------------------------------------------------------- /paper/setup.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/paper/setup.R -------------------------------------------------------------------------------- /pkg/DESCRIPTION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/pkg/DESCRIPTION -------------------------------------------------------------------------------- /pkg/NAMESPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/pkg/NAMESPACE -------------------------------------------------------------------------------- /pkg/NEWS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/pkg/NEWS -------------------------------------------------------------------------------- /pkg/R/accumulate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/pkg/R/accumulate.R -------------------------------------------------------------------------------- /pkg/R/helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/pkg/R/helpers.R -------------------------------------------------------------------------------- /pkg/R/producers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/pkg/R/producers.R -------------------------------------------------------------------------------- /pkg/R/utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/pkg/R/utils.R -------------------------------------------------------------------------------- /pkg/data/producers.rda: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/pkg/data/producers.rda -------------------------------------------------------------------------------- /pkg/inst/CITATION: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/pkg/inst/CITATION -------------------------------------------------------------------------------- /pkg/inst/tinytest/test_accumulate.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/pkg/inst/tinytest/test_accumulate.R -------------------------------------------------------------------------------- /pkg/inst/tinytest/test_helpers.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/pkg/inst/tinytest/test_helpers.R -------------------------------------------------------------------------------- /pkg/inst/tinytest/test_internals.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/pkg/inst/tinytest/test_internals.R -------------------------------------------------------------------------------- /pkg/inst/tinytest/test_object_list.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/pkg/inst/tinytest/test_object_list.R -------------------------------------------------------------------------------- /pkg/inst/tinytest/test_utils.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/pkg/inst/tinytest/test_utils.R -------------------------------------------------------------------------------- /pkg/tests/tinytest.R: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/pkg/tests/tinytest.R -------------------------------------------------------------------------------- /pkg/vignettes/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/pkg/vignettes/introduction.md -------------------------------------------------------------------------------- /pkg/vignettes/style.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/markvanderloo/accumulate/HEAD/pkg/vignettes/style.css --------------------------------------------------------------------------------