File: average

package info (click to toggle)
num-utils 0.5-12
  • links: PTS
  • area: main
  • in suites: buster, stretch
  • size: 596 kB
  • ctags: 283
  • sloc: perl: 1,226; makefile: 96
file content (263 lines) | stat: -rwxr-xr-x 7,623 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
#!/usr/bin/perl -w

# numaverage:  Find the average of a set of numbers.
#
# Copyright (C) 2002-2004 Suso Banderas

# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.
#
# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
#
# You may contact the author at <suso@suso.org>.

#######################
# VARIABLES AND SETUP #
#######################

use Getopt::Std;
use strict;
use vars qw/ %opts $verbose /;

getopts('dhiIlmMqV', \%opts);

if ($opts{'h'}) {
    &help();
    exit(0);
}

if ($opts{'d'}) {
    $verbose = 3;
    print STDERR "Debug mode\n";
} elsif ($opts{'V'}) {
    $verbose = 2;
    print STDERR "Verbose mode\n";
} elsif ($opts{'q'}) {
    $verbose = 0;  # Nothing except the final answer
} else {
    $verbose = 1;  # Normal warnings and such.
}

my ($file, @number_array, $number, $total_numbers, @numbers, $strlen);
my $sum_total = 0;

################
# MAIN PROGRAM #
################

# For file args
if (@ARGV) {
    foreach $file (@ARGV) {
        print STDERR "Reading from file $file.\n" if ($verbose >= 2);
        open (ARGFILE, "$file") &&
         process_filehandle(\*ARGFILE, \@number_array) ||
        $verbose && warn "Couldn't open file $file for reading: $!\n";
        close (ARGFILE);
    }
# For STDIN
} else {
    print STDERR "Reading from STDIN.\n" if ($verbose >= 2);
    process_filehandle(\*STDIN, \@number_array);
}

my $average;
if ($opts{'m'}) {
    $average = find_mode(\@number_array);
} elsif ($opts{'M'}) {
    $average = find_median(\@number_array);
} else {   
    $average = calculate_mean(\@number_array);
}

# post processing.
if ($opts{'i'}) {
    $average = int($average);
} elsif ($opts{'I'}) {
    if ($average == int($average)) {
        $average = 0;
    } else {
        $average =~ s/^(\-?)[0-9]*\.([0-9]*)$/$1.$2/;
    }
}

print "$average\n";


###############
# SUBROUTINES #
###############

sub help {
	print <<"EOF";
---------------------------------------------------------
numaverage : A program for finding the average of numbers.
---------------------------------------------------------
Usage:
    numaverage [options] file
    | numaverage [options]
    numaverage [options]

Options:
        -i      Only return the integer portion of the final sum.
        -I      Only return the decimal portion of the final sum

        -m      Find the mode (most occuring) of the list of numbers,
                or when there's more than one mode, the first completed mode.
        -M      Find the median (middle number) of the list of numbers.
        -l      When finding the median and the count of numbers in the set is even,
                use the lower middle number instead of the upper middle number.

        -d      Debug. For developers only.
        -h      Help: You're looking at it.
        -V      Increase verbosity.
        -q      Quiet mode, don't print any warnings.
EOF
}

sub process_filehandle {
    my $filehandle = shift;
    my $number_array_ref = shift;

    while (<$filehandle>) {
        if (m/^\s*(\-?[0-9]*\.?[0-9]+)/) {
            print STDERR "found number: $1\n" if ($verbose >= 3);
            push(@$number_array_ref, $1);
        }
    }
    return 1;
}

sub calculate_mean {
    my $number_array_ref = shift;

    my $number_of_numbers = @$number_array_ref;
    my $runningtotal = 0;
    foreach $number (@$number_array_ref) {
        $runningtotal += $number;
        print STDERR "adding number: $number  (total: $runningtotal)\n" if ($verbose >= 3);
    }
    if( $number_of_numbers <= 0 )
    {
    	print STDERR "Empty list of numbers\n";
	&help();
	exit(-1);
    }
    $average = $runningtotal / $number_of_numbers;
    print STDERR "averaging numbers: $runningtotal total / $number_of_numbers numbers = $average\n" if ($verbose >= 2);
    return $average;
}

sub find_mode {
    my $number_array_ref = shift;
    my (%numbers_count,$highest_number,$highest_count);
    foreach $number (@$number_array_ref) {
        $numbers_count{$number}++;
        if (!defined($highest_number)) {
            $highest_number = $number;
            $highest_count = 1;
        } elsif ($numbers_count{$number} > $highest_count) {
            $highest_number = $number;
            $highest_count++;
            print STDERR "Highest number is now: $highest_number with a count of $highest_count.\n" if ($verbose >= 2);
        }
    }
    return $highest_number;
}

# This routine will find the median of a set of numbers.
# If the set of numbers counts to be even, then it will take
# the higher indexed number in the middle of the set.
# If the -l option is set, it will take the lower index
# number in the middle.
sub find_median {
    my $number_array_ref = shift;
    my @number_array = sort {$a <=> $b} @$number_array_ref;
    my $array_count = scalar(@number_array);
    my $median_index;
    print "The array count is: $array_count\n" if ($verbose >= 2);
    if (($array_count % 2) == 0) {  # The index count is even.
        if ($opts{'l'}) {
            $median_index = int($array_count / 2);
        } else {
            $median_index = int(($array_count / 2) + 1);
        }
    } else {
        $median_index = int(($array_count / 2) + 0.5);
    }
    $median_index--; # Translate the number to 0 based array set.
    print "The median index is: " . int(($array_count / 2) - 0.5) . "\n" if ($verbose >= 2);
    my $median = $number_array[$median_index];
    return $median;
}

# Lay down some of that perl pod action.
=pod

=head1 NAME

numaverage - Find the average of a set of numbers.

=head1 SYNOPSIS

B<numaverage> [-dhiIlmMV] <FILE>

| B<numaverage> [-dhiIlmMV]    (Input on STDIN from pipeline.)

B<numaverage> [-dhiIlmMV]      (Input on STDIN.  Use Ctrl-D to stop.)

=head1 DESCRIPTION

By default 
B<numaverage> will determine the average from all numbers on input.  Other
options allow you to find the mode and median.

=head1 OPTIONS

    -i  Only return the integer portion of the final sum.
    -I  Only return the decimal portion of the final sum

    -m  Find the mode (most occuring) of the list of numbers,
        or when there's more than one mode, the first completed mode.
    -M  Find the median (middle number) of the list of numbers.
    -l  When finding the median and the count of numbers in the set is even,
        use the lower middle number instead of the upper middle number.

    -h  Help: You're looking at it.
    -V  Increase verbosity.
    -d  Debug mode.  For developers


=head1 SEE ALSO

numbound(1), numinterval(1), numnormalize(1), numgrep(1), numprocess(1), numsum(1), numrandom(1), numrange(1), numround(1)

=head1 COPYRIGHT

numaverage is part of the num-utils package, which is copyrighted by
Suso Banderas and released under the GPL license.  Please read
the COPYING and LICENSE files that came with the num-utils package

  Developers can read the GOALS file and contact me about providing
submitions or help for the project.

=head1 MORE INFO

More info on numaverage can be found at:

=over 1

=item B<http://suso.suso.org/programs/num-utils/>

=back

=cut