- Make_Woe - Class in Tests
-
This class is about computing the Weights of Evidence for a categorical variable versus another binary one.
- Make_Woe() - Constructor for class Tests.Make_Woe
-
- Matrix - package Matrix
-
- models - package models
-
- Multinomial_Logistic_Regression - Class in models
-
This class will create a multinomial Logistic regression algorithm where
there is a set of predictors as a double [][] array and a String categorical type
variable as array [] with K distinct categories ,where k>=3 (for 2 distinct categories a simple
binary logistic model may be preferred).
- Multinomial_Logistic_Regression() - Constructor for class models.Multinomial_Logistic_Regression
-
- multiply(TwoDmatrix) - Method in class Matrix.TwoDmatrix
-
this will be the basic multiplication method.
- multiply(double[][]) - Method in class Matrix.TwoDmatrix
-
this will be the basic multiplication method where a double array needs to be provided.
- MultiplyEqual(TwoDmatrix) - Method in class Matrix.TwoDmatrix
-
this will be the basic multiplication method where a TwoDmatrix needs to be provided and the result will be set on the initial matrix.
- MultiplyEqual(double[][]) - Method in class Matrix.TwoDmatrix
-
this will be the basic multiplication method where a double array [][] needs to be provided and the result will be set on the initial matrix.
- MultiplyEqual(double[]) - Method in class Matrix.TwoDmatrix
-
this will be the basic multiplication method where a single double array [] needs to be provided and the result will be set on the initial matrix.
- multiplylamdamatrix(double) - Method in class Matrix.TwoDmatrix
-
This method ,multiplies all entries of a matrix by a lamda factor and returns a new matrix.
- multiplylamddouble(double) - Method in class Matrix.TwoDmatrix
-
This method ,multiplies all entries of a matrix by a lamda factor and returns a new double [][].
- multiplywithdouble(double[][]) - Method in class Matrix.TwoDmatrix
-
this will be the basic multiplication method where a double array needs to be provided and the result will also be a double array [][].
- multiplywithdouble(TwoDmatrix) - Method in class Matrix.TwoDmatrix
-
this will be the basic multiplication method where a TwoDmatrix needs to be provided and the result will also be a double array [][].
- MyException - Exception in Assisted_Classes
-
It is the main exception class use to capture exceptions in all KazA classes
- MyException(String) - Constructor for exception Assisted_Classes.MyException
-