-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME.Rmd
More file actions
52 lines (35 loc) · 1.73 KB
/
README.Rmd
File metadata and controls
52 lines (35 loc) · 1.73 KB
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
---
output: github_document
---
<!-- badges: start -->
[](https://github.com/MattPlumlee/outerbase/actions)
[](https://CRAN.R-project.org/package=outerbase)
<!-- badges: end -->
# outerbase
outerbase is an R package providing regression approaches designed for
creating emulators for high-accuracy simulations. The package creates
high-dimensional approximations (near-interpolators) using a unique outer
product basis function structure. The advantages over other similar approaches
are efficiency and robustness. It can be used to construct predictors that
- are stable and consistent,
- remain accurate under massive data,
- leverage large parallel computing resources, and
- accommodate flexible data generation.
The software is open source, which can be found on
[Github](https://github.com/MattPlumlee/outerbase/), and it is licensed under
the MIT license. For details on installation and references to papers,
see the [webpage docs](https://mattplumlee.github.io/outerbase/).
A [CRAN](https://cran.r-project.org/) package is now up! This means outerbase
can now be installed directly using `?install.packages`.
```{r, eval = FALSE}
install.packages("outerbase")
```
For development purposes, Github will be a reliable way to try out
the code. The code can be pulled directly using `{devtools}`.
::: .outerbase-devel
```{r, eval = FALSE}
devtools::install_github("mattplumlee/outerbase")
```
:::
The project was originated by Matthew Plumlee
(mplumlee@northwestern.edu). As of August 2023, it is no longer under active development, but it remains managed against for bugs and small issues.