File Coverage

blib/lib/Catmandu/Fix/stat_mean.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_mean;
2              
3 1     1   17154 use Catmandu::Sane;
  1         116910  
  1         5  
4 1     1   253 use Moo;
  1         1  
  1         6  
5 1     1   620 use Catmandu::Fix::Has;
  1         620  
  1         4  
6 1     1   816 use Statistics::Basic;
  1         10504  
  1         3  
7              
8             has path => (fix_arg => 1);
9              
10             with 'Catmandu::Fix::SimpleGetValue';
11              
12             sub emit_value {
13 2     2 0 11648 my ($self, $var) = @_;
14 2         7 "${var} = Statistics::Basic::mean(${var}) if is_array_ref(${var});";
15             }
16              
17             =head1 NAME
18              
19             Catmandu::Fix::stat_mean - calculate the mean of an array
20              
21             =head1 SYNOPSIS
22              
23             # Calculate the mean of foo. E.g. foo => [1,2,3,4]
24             stat_mean(foo) # foo => '2.5'
25              
26             =head1 SEE ALSO
27              
28             L<Catmandu::Fix>
29              
30             =cut
31              
32             1;