CSV Fish

CSV categorical data analyzer. Generates 2x2 contingency tables according to specified row/column group conditions, and applies Fisher's exact test.

Installation

If you don't want to build the program yourself (see instructions below for that), you can get it via the Cargo tool. First install Cargo and then run

cargo install csv_fish

Usage

To use the program, point to the data, group specifications, and desired output location:

csv-fish --data data.csv --groups groups.csv --output output.csv

See the example files for inspiration about the content of the files, and read the below input/output specification before using the program.

The Groups CSV file contains SQL queries executed in SQLite. Do not run the program on input files you cannot trust.

Inputs

Output

Building

Only tested on Linux. To build the binary:

make

To run all tests:

make test

License

GNU GPL v3+