line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package Statistics::Descriptive; |
2
|
|
|
|
|
|
|
$Statistics::Descriptive::VERSION = '3.0801'; |
3
|
8
|
|
|
8
|
|
586701
|
use strict; |
|
8
|
|
|
|
|
89
|
|
|
8
|
|
|
|
|
251
|
|
4
|
8
|
|
|
8
|
|
43
|
use warnings; |
|
8
|
|
|
|
|
16
|
|
|
8
|
|
|
|
|
196
|
|
5
|
|
|
|
|
|
|
|
6
|
|
|
|
|
|
|
##This module draws heavily from perltoot v0.4 from Tom Christiansen. |
7
|
|
|
|
|
|
|
|
8
|
8
|
|
|
8
|
|
198
|
use 5.006; |
|
8
|
|
|
|
|
28
|
|
9
|
|
|
|
|
|
|
|
10
|
8
|
|
|
8
|
|
51
|
use vars (qw($Tolerance $Min_samples_number)); |
|
8
|
|
|
|
|
15
|
|
|
8
|
|
|
|
|
826
|
|
11
|
|
|
|
|
|
|
|
12
|
|
|
|
|
|
|
$Tolerance = 0.0; |
13
|
|
|
|
|
|
|
$Min_samples_number = 4; |
14
|
|
|
|
|
|
|
|
15
|
8
|
|
|
8
|
|
4245
|
use Statistics::Descriptive::Sparse (); |
|
8
|
|
|
|
|
20
|
|
|
8
|
|
|
|
|
185
|
|
16
|
8
|
|
|
8
|
|
4840
|
use Statistics::Descriptive::Full (); |
|
8
|
|
|
|
|
26
|
|
|
8
|
|
|
|
|
313
|
|
17
|
|
|
|
|
|
|
|
18
|
|
|
|
|
|
|
package Statistics::Descriptive; |
19
|
|
|
|
|
|
|
|
20
|
|
|
|
|
|
|
##All modules return true. |
21
|
|
|
|
|
|
|
1; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
__END__ |