https://github.com/andreasfischer1985/qqbasex
Basic functions for analyzing qualitative and quantitative data based on R's default packages
https://github.com/andreasfischer1985/qqbasex
Last synced: 2 months ago
JSON representation
Basic functions for analyzing qualitative and quantitative data based on R's default packages
- Host: GitHub
- URL: https://github.com/andreasfischer1985/qqbasex
- Owner: AndreasFischer1985
- Created: 2020-05-05T21:47:12.000Z (about 5 years ago)
- Default Branch: master
- Last Pushed: 2022-08-26T11:52:38.000Z (over 2 years ago)
- Last Synced: 2025-01-17T21:43:49.889Z (4 months ago)
- Language: R
- Size: 133 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# qqBaseX
The qqBaseX package provides basic functions for assisting all steps of analyzing qualitative and quantitative data. It was written to extend R's default packages without introducing dependencies on other packages.Besides enhanced variants of standard plots and methods (e.g., *bp()* or *dotplot()*), the qqBaseX package offers a number of convenience functions - like *saveDevs()*, to save open graphics devices in high resolution in various formats, or *cols()*, to easily create color series. In addition, the package includes many functions for exploring datasets (e.g., *plotDF()* for data.frames or *plotMAT()* for matrices), functions for visualizing variables (e.g., *spiderplot()* or *flowerplot()*), functions for annotating plots (e.g., *boxedText()*) and functions for visualizing statistical analyses (e.g., *plotLM()* for linear models). The package also includes model-agnostic functions for quantifying the influence of individual variables on predictions (for example, *af.sensitivity()* and *delta()*). In addition, the package provides functions for sourcing data via web-scraping (e.g., *scrapeHTML()* or *extractTable()*) and for preprocessing data (e.g., *prepareDF()* for quantitative data analysis or *vecToTDM()* for qualitative data analysis).
The qqBaseX package can be installed using the following commands in R:
```
install.packages("devtools");
devtools::install_github("AndreasFischer1985/qqBaseX");
```