Hi
I have downloaded a perl module cfrom CPAN using Strawberry Perl's CPAN client tool. It got successfully installed. I wrote a small perl script to use the module. But I am getting the following error:
Undefined subroutine &main::chisquare called at C:\MyPadreFiles\UseChiSquare.pl
line 9.
Press any key to continue . . .
My perl code is given below:
use strict;
use warnings;
use Statistics::Chisquare;
my(@subwaystops) = (14,18,23,28,34,42,50,59,66,72,79,86,96,103);
print chisquare(@subwaystops);
I even tried
Statistics::Chisquare::chisquare(@subwaystops);
But still the same undefined subroutine error. Please let me know how to resolve it.
Thanks
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.