File Coverage

blib/lib/Statistics/CaseResampling.pm
Criterion Covered Total %
statement 8 8 100.0
branch n/a
condition n/a
subroutine 3 3 100.0
pod n/a
total 11 11 100.0


line stmt bran cond sub pod time code
1             package Statistics::CaseResampling;
2 2     2   201688 use 5.008001;
  2         6  
3 2     2   12 use strict;
  2         11  
  2         68  
4 2     2   8 use warnings;
  2         2  
  2         422  
5              
6             require Exporter;
7              
8             our $VERSION = '0.17';
9              
10             our @ISA = qw(Exporter);
11             our @EXPORT_OK = qw(
12             resample
13             resample_medians
14             resample_means
15             select_kth
16             median
17             median_absolute_deviation
18             first_quartile
19             third_quartile
20             mean
21             simple_confidence_limits_from_samples
22             median_simple_confidence_limits
23             approx_erf
24             approx_erf_inv
25             nsigma_to_alpha
26             alpha_to_nsigma
27             sample_standard_deviation
28             population_standard_deviation
29             );
30             our @EXPORT = qw();
31             our %EXPORT_TAGS = ('all' => \@EXPORT_OK);
32              
33             require XSLoader;
34             XSLoader::load('Statistics::CaseResampling', $VERSION);
35              
36             our $Rnd = Statistics::CaseResampling::RdGen::setup(rand());
37              
38              
39             1;
40             __END__