示例#1
0
 /**
  * It checks if the data-set has any numerical value (real or integer)
  *
  * @return boolean True if it has some numerical values, else false.
  */
 public boolean hasNumericalAttributes() {
   return (Attributes.hasIntegerAttributes() || Attributes.hasRealAttributes());
 }
示例#2
0
 /**
  * It checks if the data-set has any real value
  *
  * @return boolean True if it has some real values, else false.
  */
 public boolean hasRealAttributes() {
   return Attributes.hasRealAttributes();
 }