File Coverage

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


line stmt bran cond sub pod time code
1             package Statistics::CaseResampling;
2 2     2   53107 use 5.008001;
  2         7  
  2         88  
3 2     2   11 use strict;
  2         4  
  2         65  
4 2     2   9 use warnings;
  2         8  
  2         368  
5              
6             require Exporter;
7              
8             our $VERSION = '0.15';
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__