-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
25 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,25 @@ | ||
# xva | ||
# xva | ||
|
||
**Description** | ||
|
||
R-Converter for converting verbal autopsy records collected using the WHO VA 2014 instrument to be used as input for different coding algorithms. | ||
|
||
**Input** | ||
- CSV file containing submissions of the 2014 WHO VA questionnaire (exported from ODK Aggregate) | ||
- One or more mapping files (text file, semi-colon as column separator). Minimal content: the first columns contains the names of all variables needed by the coding algorithm (called "target variables" here). The second column contains the mapping to each target variable, as a valid R expression. Expressions can be functions of zero or more variables of the WHO VA instrument, or any of the preceding target variable. In addition to standard R functions, a small set of convenience functions is provided in xda.R. | ||
|
||
**Output** | ||
A CSV file intended for processing by a coding algorithm. | ||
|
||
|
||
**Status** | ||
|
||
Initial, not intended for production use | ||
|
||
**Testing** | ||
|
||
For testing purposes, install via | ||
``` | ||
install.packages("devtools") | ||
devtools::install_github("SwissTPH/xva") | ||
``` |