nadarajan has asked for the wisdom of the Perl Monks concerning the following question:
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:I even tried Statistics::Chisquare::chisquare(@subwaystops);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);
But still the same undefined subroutine error. Please let me know how to resolve it.
Thanks
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Issue installing and referencing CPAN modules in Strawberry Perl on Windows 7
by toolic (Bishop) on Jan 27, 2013 at 00:47 UTC | |
by nadarajan (Novice) on Jan 27, 2013 at 02:00 UTC |