Getting started
Requal provides basic functionality for annotating documents in plain text with user-defined codes. The annotated text segments can be filtered and exported. Modules to enhance reproducibility help users in making their analysis more transparent and reflexive.
Installation
Server version
To use the server version, you need to install Requal on a server or ask your organization’s IT staff to install it for you. The server version is intended for online teamwork or teaching. You can try the demo version on the server of Charles University:
https://requal.fsv.cuni.cz/demo
user: demo
pswd: requal123
Desktop version
To use Requal, you need to have the R language installed and running on your machine. You can download and install R from here. You will also need a web browser with JavaScript support (i.e. any of the standard issue browsers like Firefox, Chrome, or Safari).
You can install Requal from GitHub by following these steps (assuming you have R installed on your machine):
- Download the current release of Requal from Releases. The installation file is in the
requal_<VERSION_NUMBER>.tar.gz
format. - Open the R console and install the
remotes
package by runninginstall.packages("remotes")
command. - Install the
requal
package by runningremotes::install_local(file.choose())
command and selecting the downloaded release file on your hard drive.
Usage (desktop)
After installation, the Requal app can be launched from the R console with the following command:
requal::run_app()
Development version (desktop)
The development version contains the latest features, but might be less stable than a released version.
You can install the development version of Requal from GitHub by running this code in R:
install.packages("devtools")
devtools::install_github("RE-QDA/requal")