line |
stmt |
bran |
cond |
sub |
pod |
time |
code |
1
|
|
|
|
|
|
|
package cli::crosstable; |
2
|
|
|
|
|
|
|
|
3
|
1
|
|
|
1
|
|
50678
|
use 5.006; |
|
1
|
|
|
|
|
10
|
|
4
|
1
|
|
|
1
|
|
5
|
use strict; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
15
|
|
5
|
1
|
|
|
1
|
|
3
|
use warnings; |
|
1
|
|
|
|
|
1
|
|
|
1
|
|
|
|
|
43
|
|
6
|
|
|
|
|
|
|
|
7
|
|
|
|
|
|
|
=head1 NAME |
8
|
|
|
|
|
|
|
|
9
|
|
|
|
|
|
|
cli::crosstable - A simple script to produce crosstable (2-way contingency table) with various switch options. |
10
|
|
|
|
|
|
|
|
11
|
|
|
|
|
|
|
The command details are shown by as follows: |
12
|
|
|
|
|
|
|
|
13
|
|
|
|
|
|
|
crosstable --help |
14
|
|
|
|
|
|
|
|
15
|
|
|
|
|
|
|
=head1 VERSION |
16
|
|
|
|
|
|
|
|
17
|
|
|
|
|
|
|
Version 1.031 |
18
|
|
|
|
|
|
|
|
19
|
|
|
|
|
|
|
=cut |
20
|
|
|
|
|
|
|
|
21
|
|
|
|
|
|
|
our $VERSION = '1.031'; |
22
|
|
|
|
|
|
|
|
23
|
|
|
|
|
|
|
|
24
|
|
|
|
|
|
|
=head1 SYNOPSIS |
25
|
|
|
|
|
|
|
|
26
|
|
|
|
|
|
|
Quick summary of what the module does. |
27
|
|
|
|
|
|
|
|
28
|
|
|
|
|
|
|
Perhaps a little code snippet. |
29
|
|
|
|
|
|
|
|
30
|
|
|
|
|
|
|
use cli::crosstable; |
31
|
|
|
|
|
|
|
|
32
|
|
|
|
|
|
|
my $foo = cli::crosstable->new(); |
33
|
|
|
|
|
|
|
... |
34
|
|
|
|
|
|
|
|
35
|
|
|
|
|
|
|
=head1 AUTHOR |
36
|
|
|
|
|
|
|
|
37
|
|
|
|
|
|
|
"Toshiyuki Shimono", C<< >> |
38
|
|
|
|
|
|
|
|
39
|
|
|
|
|
|
|
|
40
|
|
|
|
|
|
|
=head1 LICENSE AND COPYRIGHT |
41
|
|
|
|
|
|
|
|
42
|
|
|
|
|
|
|
Copyright 2018 "Toshiyuki Shimono". |
43
|
|
|
|
|
|
|
|
44
|
|
|
|
|
|
|
This program is free software: you can redistribute it and/or modify |
45
|
|
|
|
|
|
|
it under the terms of the GNU General Public License as published by |
46
|
|
|
|
|
|
|
the Free Software Foundation, either version 3 of the License, or |
47
|
|
|
|
|
|
|
(at your option) any later version. |
48
|
|
|
|
|
|
|
|
49
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful, |
50
|
|
|
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of |
51
|
|
|
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
52
|
|
|
|
|
|
|
GNU General Public License for more details. |
53
|
|
|
|
|
|
|
|
54
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License |
55
|
|
|
|
|
|
|
along with this program. If not, see L. |
56
|
|
|
|
|
|
|
|
57
|
|
|
|
|
|
|
|
58
|
|
|
|
|
|
|
=cut |
59
|
|
|
|
|
|
|
|
60
|
|
|
|
|
|
|
1; # End of cli::crosstable |