Counts

class Counts(val totalFreq: Double, val missingFreq: Option[Double], val invalidFreq: Option[Double], val cardinality: Option[Double]) extends PmmlElement

Carries counters for frequency of values with respect to their state of being missing, invalid, or valid. The counts can be non-integer if they are weighted.

Value parameters:
cardinality

The number of unique, or distinct, values that the variable has.

invalidFreq

Counts the number of records with values other than valid. The total frequency includes the missing values and invalid values.

missingFreq

Counts the number of records where value is missing.

totalFreq

Counts all records, same as for statistics of all MiningFields.

trait Serializable
class Object
trait Matchable
class Any

Value members

Inherited methods

Inherited from:
HasExtensions
def hasExtensions: Boolean
Inherited from:
HasExtensions

Concrete fields

val cardinality: Option[Double]
val invalidFreq: Option[Double]
val missingFreq: Option[Double]
val totalFreq: Double