File Coverage

blib/lib/Catmandu/Fix/stat_variance.pm
Criterion Covered Total %
statement 14 14 100.0
branch n/a
condition n/a
subroutine 5 5 100.0
pod 0 1 0.0
total 19 20 95.0


line stmt bran cond sub pod time code
1             package Catmandu::Fix::stat_variance;
2              
3 1     1   16424 use Catmandu::Sane;
  1         119207  
  1         5  
4 1     1   258 use Moo;
  1         1  
  1         5  
5 1     1   727 use Catmandu::Fix::Has;
  1         629  
  1         6  
6 1     1   849 use Statistics::Basic;
  1         11074  
  1         4  
7              
8             has path => (fix_arg => 1);
9              
10             with 'Catmandu::Fix::SimpleGetValue';
11              
12             sub emit_value {
13 2     2 0 11145 my ($self, $var) = @_;
14 2         8 "${var} = Statistics::Basic::variance(${var}) if is_array_ref(${var});";
15             }
16              
17             =head1 NAME
18              
19             Catmandu::Fix::stat_mean - calculate the variance of an array
20              
21             =head1 SYNOPSIS
22              
23             # Calculate the variance of foo. E.g. foo => [1,2,3,4]
24             stat_variance(foo) # foo => '1.25'
25              
26             =head1 SEE ALSO
27              
28             L<Catmandu::Fix>
29              
30             =cut
31              
32             1;