Feature Selection Package - Algorithms - T-test
Description
A t-test is a statistical hypothesis where the statistic follows a Student distribution.
Usage
Method Signature:
[out] = fsTtest(X,Y)

Output:
    out: A struct containing the following fields
Input:
    X: The features on current trunk, each column is a feature vector on all instances, and each row is a part of the instance.
    Y: The label of instances, in single column form: 1 2 3 4 5 ...
Code Example
% Using the wine.dat data set, which can be found at
% [fspackage_location]/classifiers/knn/wine.mat
fsTtest(X,Y);
Keyword in Evaluator Framework
ttest