File Coverage

blib/lib/Statistics/Descriptive.pm
Criterion Covered Total %
statement 17 17 100.0
branch n/a
condition n/a
subroutine 6 6 100.0
pod n/a
total 23 23 100.0


line stmt bran cond sub pod time code
1             package Statistics::Descriptive;
2             $Statistics::Descriptive::VERSION = '3.0800';
3 8     8   471222 use strict;
  8         77  
  8         201  
4 8     8   33 use warnings;
  8         16  
  8         179  
5              
6             ##This module draws heavily from perltoot v0.4 from Tom Christiansen.
7              
8 8     8   136 use 5.006;
  8         24  
9              
10 8     8   53 use vars (qw($Tolerance $Min_samples_number));
  8         15  
  8         633  
11              
12             $Tolerance = 0.0;
13             $Min_samples_number = 4;
14              
15 8     8   3226 use Statistics::Descriptive::Sparse ();
  8         19  
  8         154  
16 8     8   3600 use Statistics::Descriptive::Full ();
  8         25  
  8         270  
17              
18             package Statistics::Descriptive;
19              
20             ##All modules return true.
21             1;
22              
23             __END__