We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
cabal test
The data for some tests is not included in the main repository, these tests will fail. Either pull in the submodules (quite big):
git submodule init git submodule update
... or pull in the neccessary data by hand (adding a leading zero to numbers starting with '.' since Text.Read.read cannot parse them):
mkdir -p datasets/csv/uci/ wget http://archive.ics.uci.edu/ml/machine-learning-databases/wine/wine.data -q -O - |sed 's/,\./,0\./g' > datasets/csv/uci/wine.csv