https://github.com/trinker/qdap2
https://github.com/trinker/qdap2
Last synced: about 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/trinker/qdap2
- Owner: trinker
- Created: 2013-01-29T03:51:41.000Z (over 13 years ago)
- Default Branch: master
- Last Pushed: 2013-01-29T03:56:05.000Z (over 13 years ago)
- Last Synced: 2025-02-14T12:41:38.102Z (over 1 year ago)
- Language: R
- Size: 3.6 MB
- Stars: 2
- Watchers: 3
- Forks: 0
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# qdap
====

qdap (Quantitative Discourse Analysis Package) is an R package designed to assist in quantitative discourse analysis. The package stands as a bridge between qualitative transcripts of dialogue and statistical analysis and visualization.
## Installation
Currently there isn't a release on [CRAN](http://cran.r-project.org/).
You can, however, download the [zip ball](https://github.com/trinker/qdap/zipball/master) or [tar ball](https://github.com/trinker/qdap/tarball/master), decompress and run `R CMD INSTALL` on it, or use the **devtools** package to install the development version:
```r
# install.packages("devtools")
library(devtools)
install_github("qdap", "trinker")
```
Note: Windows users need [Rtools](http://www.murdoch-sutherland.com/Rtools/) and [devtools](http://CRAN.R-project.org/package=devtools) to install this way.
Additionally, Windows users currently must install `XML` and `RCurl` before installing qdap. Use the following short script:
```r
URL <- "http://www.stats.ox.ac.uk/pub/RWin/bin/windows/contrib/2.15/"
install.packages("XML", contriburl = URL)
install.packages("RCurl", contriburl = URL)
```
Note: Mac users must install `openNLP` before attempting to install `qdap`
```r
install.packages("openNLP", type = "source")
```
## Help
For a variety of qdap help files and videos [click here](https://github.com/trinker/qdap/wiki).
For the package pdf help manual [click here](https://dl.dropbox.com/u/61803503/qdap.pdf).