Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pmcharrison/psychTestR
psychTestR - an R package for developing behavioural experiments
https://github.com/pmcharrison/psychTestR
Last synced: 3 months ago
JSON representation
psychTestR - an R package for developing behavioural experiments
- Host: GitHub
- URL: https://github.com/pmcharrison/psychTestR
- Owner: pmcharrison
- License: gpl-3.0
- Created: 2018-08-05T09:09:29.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2024-07-09T17:35:20.000Z (4 months ago)
- Last Synced: 2024-07-09T22:11:15.207Z (4 months ago)
- Language: R
- Homepage: https://pmcharrison.github.io/psychTestR
- Size: 10.9 MB
- Stars: 24
- Watchers: 6
- Forks: 7
- Open Issues: 22
-
Metadata Files:
- Readme: README.md
- Changelog: NEWS.md
- License: LICENSE
Awesome Lists containing this project
README
# psychTestR
[![lifecycle](https://img.shields.io/badge/lifecycle-maturing-blue.svg)](https://www.tidyverse.org/lifecycle/#maturing)
[![DOI](https://joss.theoj.org/papers/10.21105/joss.02088/status.svg)](https://doi.org/10.21105/joss.02088)
[![DOI](https://zenodo.org/badge/DOI/10.5281/zenodo.1415355.svg)](https://doi.org/10.5281/zenodo.1415355)
[![R-CMD-check](https://github.com/pmcharrison/psychTestR/workflows/R-CMD-check/badge.svg)](https://github.com/pmcharrison/psychTestR/actions)[psychTestR](https://pmcharrison.github.io/psychTestR)
is an R package for creating behavioural experiment interfaces.
To learn more about psychTestR, visit the following resources:- [Overview paper in the Journal of Open Source Software](https://doi.org/10.21105/joss.02088)
- [Introductory tutorial](https://pmcharrison.github.io/psychTestR/articles/b-introduction)
- Other vignettes under the 'Articles' tab
- [Function-level documentation](https://pmcharrison.github.io/psychTestR/reference/index.html)
- [Guide to creating a server for online *R* experiments using *psychTestR* (Anthony Chmiel)](https://s3-eu-west-1.amazonaws.com/research.pmcharrison.com/psychTestR/psychTestR-server-docs-latest.pdf)
- [Video tutorial (2 hours, for beginners, by Anthony Chmiel)](https://pmcharrison.github.io/psychTestR/articles/z_Anthony_Chmiel_video_tutorials.html)## Installation
If you don't have R installed, [download](https://cloud.r-project.org/) and install it first.
We recommend also installing [RStudio](https://www.rstudio.com/),
a popular integrated development environment for R.Then open R and install psychTestR:
```r
install.packages("devtools")
devtools::install_github("pmcharrison/psychTestR")
```For a quick test of psychTestR functionality, visit
[Simple demo](https://pmcharrison.github.io/psychTestR/articles/a1-simple-demo.html).## Citation
You can cite psychTestR as follows:
> Harrison, Peter M. C. (2020).
> psychTestR: An R package for designing and
> conducting behavioural psychological experiments.
> *Journal of Open Source Software*. https://doi.org/10.21105/joss.02088The psychTestR source code is also permanently archived
on Zenodo. You can find this permanent archive at the following DOI:
http://doi.org/10.5281/zenodo.1415355.
This DOI will always point to the latest release of
the `psychTestR` package,
but you can also find version-specific DOIs on the Zenodo page.You might also want to mention the particular version of the package you used.
To check the installed version, you can run the following code in your R console:``` r
asNamespace("psychTestR")$`.__NAMESPACE__.`$spec[["version"]]
```## Community guidelines
The [psychTestR documentation website](https://pmcharrison.github.io/psychTestR/)
answers many common questions about psychTestR usage.
Further questions are welcomed via the
[GitHub issue tracker](https://github.com/pmcharrison/psychTestR/issues).
This issue tracker is also the place to report issues or software problems.
We welcome software contributions in the form of
[GitHub pull requests](https://github.com/pmcharrison/psychTestR/pulls);
if you are thinking of making a contribution, consider first beginning
a discussion on the issue tracker so that we can discuss implementation details.