An open API service indexing awesome lists of open source software.

https://github.com/angeella/pecora


https://github.com/angeella/pecora

flipping permutation r rcpp

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

          

The **pecora** (permutation conditional random) package provides functions to perform the one-sample and two-samples t-tests using permutations/sign-flipping.

To install it:

```{r}
devtools::install_github("angeella/pecora")

library(pecora)
```

A toy example:

```{r}
X <- matrix(rnorm(10*100000,5,sd=5),100000,10)

system.time(out1 <- oneSample(X,1000))
```