a faster arff parser
This is a subproject for better file handling with mlr and OpenML.
Please install the proper CRAN releases in the usual way.
If you absolutely have to install from here (you should not):
devtools::install_github("mlr-org/farff")
ARFF files are like CSV files, with a little bit of added meta information in a header and standardized NA values. They are quite often used for machine learning data sets and were introduced for the WEKA machine learning java toolbox.
Several reasons motivated the development of farff:
library(farff)
# import arff format file
d = readARFF("iris.arff")
# export arff format file
writeARFF(iris, path = "iris.arff")