nadarajan has asked for the wisdom of the Perl Monks concerning the following question:

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

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
      Thank you so much! You saved my day!!