Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/vkatti/simplr
- Owner: vkatti
- License: cc-by-4.0
- Created: 2022-12-02T04:28:26.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-12-04T16:48:22.000Z (about 2 years ago)
- Last Synced: 2024-08-13T07:11:28.085Z (4 months ago)
- Language: R
- Size: 17.6 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.Rmd
- License: LICENSE.md
Awesome Lists containing this project
- jimsghstars - vkatti/simplr - A miscellaneous set of utility functions to make R usage simpler (R)
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))
```