-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathREADME.Rmd
35 lines (25 loc) · 1.21 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```
# clusterapply
<!-- badges: start -->
<!-- badges: end -->
Clusterapply is meant to break datasets into smaller frames on which functions (regressions, for example) can be applied. Much of this can already be accomplished with the family of *apply functions, but here we are building towards parallelization with an eye on memory use. The package does not yet contain all intended features and should be considered provisional.
This package is used primarily in the EPIDEMIA forecasting system’s epidemiar package: https://github.com/EcoGRAPH/epidemiar/releases/latest with an associated demonstration project available at: https://github.com/EcoGRAPH/epidemiar-demo/releases/latest
## Installation
The development version, whenever public, is available from [GitHub](https://github.com/) with:
``` r
# install.packages("devtools")
devtools::install_github("EcoGRAPH/clusterapply")
```
## Example
Please see the associated ca-vignette.Rmd file for an example of clusterapply's use.