| NaiveBayesClassifier Constructor |
Constructs a NaiveBayesClassifier.
Namespace: Imsl.DataMiningAssembly: ImslCS (in ImslCS.dll) Version: 6.5.2.0
Syntaxpublic NaiveBayesClassifier(
int nContinuous,
int nNominal,
int nClasses
)
Public Sub New (
nContinuous As Integer,
nNominal As Integer,
nClasses As Integer
)
public:
NaiveBayesClassifier(
int nContinuous,
int nNominal,
int nClasses
)
new :
nContinuous : int *
nNominal : int *
nClasses : int -> NaiveBayesClassifierParameters
- nContinuous
- Type: SystemInt32
An int containing the number of continuous attributes.
- nNominal
- Type: SystemInt32
An int containing the number of nominal attributes.
- nClasses
- Type: SystemInt32
An int containing the number of target classifications.
See Also