https://github.com/Luwei-Ying/validateIt
https://github.com/Luwei-Ying/validateIt
Last synced: 4 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/Luwei-Ying/validateIt
- Owner: Luwei-Ying
- Created: 2020-07-22T17:41:15.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2022-07-07T16:11:21.000Z (almost 3 years ago)
- Last Synced: 2024-08-13T07:14:16.435Z (8 months ago)
- Language: R
- Size: 202 KB
- Stars: 13
- Watchers: 0
- Forks: 4
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
- jimsghstars - Luwei-Ying/validateIt - (R)
README
## validateIt: An R Package for Topic and Label Validation
Authors: [Luwei Ying](http://luweiying.org), [Jacob Montgomery](https://pages.wustl.edu/montgomery) and [Brandon Stewart](http://brandonstewart.org)
Please email all comments/questions to luwei.ying [AT] wustl.edu
### Installation Instructions
The package is currently not available on CRAN. You can install the most recent development version using the devtools package. First you have to install devtools using the following code. Note that you only have to do this once```
if(!require(devtools)) install.packages("devtools")
```Then you'll need to install the dependency, "pyMTurkR", using the function `install_github`. If you need to interact with Mturk, be sure to follow the detailed instructions here: github.com/cloudyr/pyMTurkR
```
devtools::install_github("cloudyr/pyMTurkR")
```Now you can install our package
```
devtools::install_github("Luwei-Ying/validateIt", dependencies=TRUE)
```Note that this will install all the packages suggested and required to run our package. It may take a few minutes the first time, but this only needs to be done on the first use. In the future you can update to the most recent development version using the same code.