Options
All
  • Public
  • Public/Protected
  • All
Menu

External module "stats/wilcoxon/docs/types/index.d"

Index

Interfaces

Functions

Functions

Export assignment wilcoxon

  • Computes a Wilcoxon signed rank test.

    throws

    must provide valid options

    Parameters

    Returns Results

    test result object

    Example

    var x = [ 6, 8, 14, 16, 23, 24, 28, 29, 41, -48, 49, 56, 60, -67, 75 ];
    var out = wilcoxon( x, {
        'mu': 2
    });

    Example

    var x = [ 6, 8, 14, 16, 23, 24, 28, 29, 41, -48, 49, 56, 60, -67, 75 ];
    var out = wilcoxon( x, {
        'alternative': 'greater'
    });
  • Computes a Wilcoxon signed rank test.

    throws

    must provide valid options

    Parameters

    Returns Results

    test result object

    Example

    var x = [ 1.83, 0.50, 1.62, 2.48, 1.68, 1.88, 1.55, 3.06, 1.30 ];
    var y = [ 0.878, 0.647, 0.598, 2.05, 1.06, 1.29, 1.06, 3.14, 1.29 ];
    var out = wilcoxon( x, y );