Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/kota7/combiter
Combinatrics Iterators for R
https://github.com/kota7/combiter
Last synced: 3 months ago
JSON representation
Combinatrics Iterators for R
- Host: GitHub
- URL: https://github.com/kota7/combiter
- Owner: kota7
- License: other
- Created: 2016-09-25T16:34:08.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2017-12-04T09:18:08.000Z (almost 7 years ago)
- Last Synced: 2024-07-12T16:35:50.887Z (4 months ago)
- Language: R
- Homepage: https://kota7.github.io/combiter/
- Size: 71.3 KB
- Stars: 3
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE
Awesome Lists containing this project
README
---
output: github_document
---```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>"
)
``````{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```[![Build Status](https://travis-ci.org/kota7/combiter.svg?branch=master)](https://travis-ci.org/kota7/combiter)
[![CRAN Status](https://www.r-pkg.org/badges/version/combiter)](https://www.r-pkg.org/badges/version/combiter)
[![](https://cranlogs.r-pkg.org/badges/combiter)](https://cran.r-project.org/package=combiter
)
[![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/kota7/combiter?branch=master&svg=true)](https://ci.appveyor.com/project/kota7/combiter)# combiter: Combinatorics Iterators for R
This package provides iterators for combinations, permutations, subsets, and cartesian product, with which one can go through the elements without creating a huge set of
all possible values.Since `v1.0.2`, the iterator objects of the package inherit the `iter` class from [iterators](https://cran.r-project.org/package=iterators) package.
As a result, the objects are also compatible with [foreach](https://cran.r-project.org/package=foreach) library.## Installation and import
Install from CRAN by:
```{r, eval=FALSE}
install.packages("combiter")
```Or install development version by:
```{r, eval=FALSE}
devtools::install_github("kota7/combiter")
```Use by
```{r}
library(combiter)
```## Usage
Please visit the [Documentation Page](https://kota7.github.io/combiter) for the package introduction.