Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/joelgombin/qualvar
An R package that implements Implements Indices of Qualitative Variation proposed by Wilcox (1973)
https://github.com/joelgombin/qualvar
measure r statistics
Last synced: 23 days ago
JSON representation
An R package that implements Implements Indices of Qualitative Variation proposed by Wilcox (1973)
- Host: GitHub
- URL: https://github.com/joelgombin/qualvar
- Owner: joelgombin
- Created: 2015-08-18T21:36:10.000Z (about 9 years ago)
- Default Branch: master
- Last Pushed: 2018-01-02T15:12:48.000Z (almost 7 years ago)
- Last Synced: 2023-11-20T16:01:34.080Z (12 months ago)
- Topics: measure, r, statistics
- Language: HTML
- Homepage: http://joelgombin.github.io/qualvar/
- Size: 644 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Travis-CI Build Status](https://travis-ci.org/joelgombin/qualvar.svg?branch=master)](https://travis-ci.org/joelgombin/qualvar) [![DOI](https://zenodo.org/badge/17182/joelgombin/qualvar.svg)](https://zenodo.org/badge/latestdoi/17182/joelgombin/qualvar)
# What is this package about?
In 1973, Wilcox published a paper presenting various indices of qualitative variation for social scientists. The problem is to find relevant statistical indices to measure the variation in nominal-scale (i.e. qualitative or categorical) data. Please see the Wilcox paper for more details on the rationale.
Wilcox presents six indices that can be used to measure qualitative variation. The qualvar package implements these indices so that R users can easily use them.
See the [vignette](http://htmlpreview.github.io/?https://github.com/joelgombin/qualvar/blob/master/inst/doc/wilcox1973.html) to learn more.
#Installation
This package is now on CRAN, you can install the stable version with:
```{r}
install.packages("qualvar")
```You can also install the development version from Github via `devtools`:
```{r}
# if necessary, install devtools
# install.packages("devtools")
devtools::install_github("joelgombin/qualvar")
```