Ecosyste.ms: Awesome

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

Awesome Lists | Featured Topics | Projects

https://github.com/vkatti/simplr

A miscellaneous set of utility functions to make R usage simpler
https://github.com/vkatti/simplr

Last synced: 8 days ago
JSON representation

A miscellaneous set of utility functions to make R usage simpler

Awesome Lists containing this project

README

        

---
output: github_document
---

```{r, include = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "man/figures/README-",
out.width = "100%"
)
```

# simplr

⚠️ This package is under active development! Feedback is welcome, consistency is not yet promised.

## simple

*/ˈsɪmp(ə)l/*

adjective

comparative adjective: *simpler*

1\. easily understood or done; presenting no difficulty. "a simple solution"

Similar: `straightforward` `easy` `uncomplicated` `uninvolved` `effortless` `painless` `manageable` `undemanding` `unexacting` `elementary` `plain sailing`

Opposite: `difficult` `hard` `demanding` `complicated` `complex`

- used to emphasize the fundamental and straightforward nature of something. "the simple truth"

The goal of simplr is to provide a few utility functions to make R usage a little simpler.

## Installation

You can install the development version of simplr from [GitHub](https://github.com/) with:

``` r
# install.packages("devtools")
devtools::install_github("vkatti/simplr")
```

## Example

This is a basic example which shows you how to solve a common problem:

```{r example}
library(simplr)
## basic example code
getStats(airquality)
```

```{r example2}
# example with factors
getStats(as.data.frame(datasets::Titanic))
```