This repository has been archived by the owner on Dec 30, 2023. It is now read-only.
forked from rsquaredacademy/xplorerr
-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.Rmd
129 lines (93 loc) · 4.01 KB
/
README.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
---
output: github_document
---
<!-- README.md is generated from README.Rmd. Please edit that file -->
```{r, echo = FALSE}
knitr::opts_chunk$set(
collapse = TRUE,
comment = "#>",
fig.path = "README-"
)
```
# xplorerr
> Tools for interactive data analysis
[![CRAN_Status_Badge](https://www.r-pkg.org/badges/version/xplorerr)](https://cran.r-project.org/package=xplorerr)
[![cran checks](https://cranchecks.info/badges/summary/xplorerr)](https://cran.r-project.org/web/checks/check_results_xplorerr.html)
[![Travis-CI Build Status](https://travis-ci.org/rsquaredacademy/xplorerr.svg?branch=master)](https://travis-ci.org/rsquaredacademy/xplorerr) [![AppVeyor Build Status](https://ci.appveyor.com/api/projects/status/github/rsquaredacademy/xplorerr?branch=master&svg=true)](https://ci.appveyor.com/project/rsquaredacademy/xplorerr) [![](https://cranlogs.r-pkg.org/badges/grand-total/xplorerr)](https://cran.r-project.org/package=xplorerr) [![lifecycle](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www.tidyverse.org/lifecycle/#maturing)
## Overview
xplorerr provides a set of tools for interactive data analysis:
- Descriptive statistics
- Visualize probability distributions
- Inferential statistics
- Linear regression
- Logistic regression
- RFM Analysis
- Data visualization
- ggplot2
- plotly
- rbokeh
- highcharter
## Installation
```{r gh-installation, eval = FALSE}
# Install release version from CRAN
install.packages("xplorerr")
# Install development version from GitHub
# install.packages("devtools")
devtools::install_github("rsquaredacademy/xplorerr")
```
## Usage
#### Descriptive Statistics
Generate descriptive statistics such as measures of location, dispersion,
frequency tables, cross tables, group summaries and multiple one/two way tables.
```{r descriptive, eval=FALSE}
app_descriptive()
```
#### Visualize Probability Distributions
Visualize and compute percentiles/probabilities of normal, t, f, chi square and
binomial distributions.
```{r vistributions, eval = FALSE}
app_vistributions()
```
#### Inferential Statistics
Select set of parametric and non-parametric statistical tests. 'inferr' builds
upon the solid set of statistical tests provided in 'stats' package by
including additional data types as inputs, expanding and restructuring the test
results. The tests included are t tests, variance tests, proportion tests, chi
square tests, Levene's test, McNemar Test, Cochran's Q test and Runs test.
```{r inference, eval=FALSE}
app_inference()
```
#### Linear Regression
Tools designed to make it easier for users, particularly beginner/intermediate
R users to build ordinary least squares regression models. Includes
comprehensive regression output, heteroskedasticity tests, collinearity
diagnostics, residual diagnostics, measures of influence, model fit assessment
and variable selection procedures.
```{r linear, eval=FALSE}
app_linear_regression()
```
#### Logistic Regression
Tools designed to make it easier for beginner and intermediate users to build
and validate binary logistic regression models. Includes bivariate analysis,
comprehensive regression output, model fit statistics, variable selection
procedures, model validation techniques and a 'shiny' app for interactive model
building.
```{r logistic, eval=FALSE}
app_logistic_regression()
```
#### RFM Analysis
Tools for RFM (recency, frequency and monetary value) analysis. Generate RFM
score from both transaction and customer level data. Visualize the relationship
between recency, frequency and monetary value using heatmap, histograms, bar
charts and scatter plots.
```{r rfm, eval=FALSE}
app_rfm_analysis()
```
#### Data Visualization
Tools for interactive data visualization . Users can visualize data using
'ggplot2', 'plotly', 'rbokeh' and 'highcharter' libraries.
```{r visualize, eval=FALSE}
app_visualizer()
```
## Community Guidelines
Please note that this project is released with a [Contributor Code of Conduct](CONDUCT.md). By participating in this project you agree to abide by its terms.