Classification With WEKA: Data Mining Lab 2
Classification With WEKA: Data Mining Lab 2
Classification With WEKA: Data Mining Lab 2
WEKA inputs
The file format for WEKA is .ARFF file format. A-attribute R-relation F-file F-format An .arff file contains the following tags Example of the ARFF file format: % name of the relation @relation fruits %list of the attributes, for example @attribute size real @attribute numberOfLegs numeric @attribute color {red, blue, green} @attribute description string @attribute dateOfExperiment date %in format yyyy-MM-dd-THH:mm:ss ( 2004-04-03T12:00:00) Then follows a list of comma-separated data instances. Missing values are represented as ? in .arff data format. @data
Perform data filtering operations: replace missing values, discretize numeric values etc.