Click or drag to resize
NaiveBayesClassifierGetProbabilities Method
Returns the predicted classification probabilities for each target class.

Namespace: Imsl.DataMining
Assembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntax
public double[][] GetProbabilities()

Return Value

Type: Double
A double matrix, prob, of size nPatterns by nClasses containing the predicted classification probabilities for each target class, where nPatterns is the number of patterns trained. prob[i][j] is the estimated probability that the i-th pattern belongs to the j-th target class.
See Also