Skip to content

Commit

Permalink
documentation
Browse files Browse the repository at this point in the history
  • Loading branch information
karlnapf committed Jul 4, 2012
1 parent 064d34d commit 3798a5b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 15 deletions.
16 changes: 5 additions & 11 deletions src/shogun/statistics/IndependenceTestStatistic.h
Expand Up @@ -16,19 +16,13 @@ namespace shogun
{

class CFeatures;
/** TODO
*
* @brief Test statistic base class. Provides an interface for statistical
* tests via three methods: compute_statistic(), compute_p_value() and
* compute_threshold(). The second computes a p-value for the statistic computed
* by the first method.
* The p-value represents the position of the statistic in the null-distribution,
* i.e. the distribution of the statistic population given the null-hypothesis
* is true. (1-position = p-value).
* The third method, compute_threshold(), computes a threshold for a given
* test level which is needed to reject the null-hypothesis
/** @brief Independence test base class. Provides an interface for performing an
* independence test, i.e. Given samples from two distributions p_x and p_y, the
* null-hypothesis is: H0: p_xy=p_x*p_y, the alternative hypothesis:
* H1: p_xy!=p_x*p_y
*
* Abstract base class.
*
*/
class CIndependenceTestStatistic : public CTestStatistic
{
Expand Down
4 changes: 0 additions & 4 deletions src/shogun/statistics/TwoSampleTestStatistic.h
Expand Up @@ -21,10 +21,6 @@ class CFeatures;
* two-sample test, i.e. Given samples from two distributions p and q, the
* null-hypothesis is: H0: p==q, the alternative hypothesis: H1: p!=q.
*
* It is possible to define multiple ways to compute the p-value.
*
* Provides code for sampling the null-distribution via bootstrapping.
*
* Abstract base class.
*
*/
Expand Down

0 comments on commit 3798a5b

Please sign in to comment.