Data

Your data should be a comma-seperated value (CSV) format. All your data should be binary in nature, with the values of 0 or 1. Here is an example of the CSV data you will need.

 1a,b,c,d,e
 21,0,0,0,0
 31,0,0,0,0
 41,0,0,1,1
 50,0,0,0,1
 60,0,0,0,0
 71,0,0,0,1
 81,0,0,0,0
 91,0,0,1,1
100,0,0,0,1
111,0,0,0,0

Noticed that the first line contains the headers which represent the names of the variables. In this example file, there are 5 variables a, b, c, d, e. Also note there are no missing data. This CSV file should be easily read by Pandas using pd.read_csv(...).

TODO

  • D00: In the future, we will enable other types of variables such as continuous and general categorical variables.