https://github.com/bgreenwell/bpa
Basic pattern analysis in R
https://github.com/bgreenwell/bpa
basic-pattern-analysis data-cleaning r standardization
Last synced: about 1 month ago
JSON representation
Basic pattern analysis in R
- Host: GitHub
- URL: https://github.com/bgreenwell/bpa
- Owner: bgreenwell
- Created: 2016-01-11T12:26:26.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2016-09-06T12:42:47.000Z (over 8 years ago)
- Last Synced: 2025-04-15T19:27:53.462Z (about 1 month ago)
- Topics: basic-pattern-analysis, data-cleaning, r, standardization
- Language: R
- Homepage:
- Size: 518 KB
- Stars: 3
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# bpa: Basic Pattern Analysis in R
[](http://cran.r-project.org/package=bpa)
[](https://travis-ci.org/bgreenwell/bpa)
[](https://codecov.io/github/bgreenwell/bpa?branch=master)
[](http://cranlogs.r-pkg.org/badges/bpa)
[](http://cranlogs.r-pkg.org/badges/grand-total/bpa)Basic pattern analysis, as implemented in the R package `bpa`, is a data pre-processing tool and is designed to help reduce the time spent doing various pre-processing tasks. It takes inspiration from some of the functionality of [SAS/DataFlux Data Management Studio](https://support.sas.com/documentation/onlinedoc/dfdmstudio/). More specifically, the functions in `bpa` help standardize the data so that multiple formatting issues, typos, and other unexpected outcomes can more easily be identified in unfamiliar and/or large amounts of data. For more information and example usage, see the introductory vignette included with the package.
## Installation
The [current stable release](http://cran.r-project.org/package=bpa) of the `bpa` package is available from CRAN and can be installed using `install.packages`:
```r
# Install current stable release from CRAN
install.packages("bpa")
```
The development version is hosted on GitHub at https://github.com/bgreenwell/bpa and can be installed using `install_github` from the [`devtools`](https://github.com/hadley/devtools) package:
```r
# Assuming devtools is already installed
devtools::install_github("bgreenwell/bpa")
```
Bug reports should be submitted to https://github.com/bgreenwell/bpa/issues.