Welcome to the wiki page!
In this page, I will give a tutorial about the use of the Chordalysis software.
Here is the step-by-step procedure that I'll develop.
The download part is pretty easy, just download the .zip here:
Not the hardest step either: just extract the zip where you want to (:
Chordalysis analyses data, so... you need a dataset.
The requirements for the file containing the dataset are:
You can have a look at the mushroom dataset for an example of correctly formatted CSV.
Open a Windows/Linux/MacOS terminal and navigate to the repository in which you extracted Chordalysis.jar (cd command). Then if you simply type:
java -jar Chordalysis.jar
the terminal will tell you how to use the program:
petitjean@xx:~$ java -jar Chordalysis.jar
Usage: java -Xmx1g -jar Chordalysis.jar dataFile pvalue imageOutputFile useGUI?
Example: java -Xmx1g -jar Chordalysis.jar dataset.csv 0.05 graph.png false
Note: '1g' means that you authorize 1GB of memory.
Note: It should be adjusted depending upon the size of your data set (mostly required to load the data set).
So, if you saved the file
mushroom.csvin the same folder as
Chordalysis.jar, you can call the program with:
java -Xmx1g -jar Chordalysis.jar mushroom.csv 0.05 mush-graph.png false