http://www.perlmonks.org?node_id=1017275

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

How to calculate Chi-Square test P-value with Perl? Any example? My input is the value X to evaluate the distribution and the number of the degrees of freedom.

Thanks!

Dicty

Replies are listed 'Best First'.
Re: calculate Chi-Square test
by blue_cowdawg (Monsignor) on Feb 05, 2013 at 20:37 UTC

      Statistics::ChiSquared is not a suitable package except for preliminary investigation, as it returns a text string which you have to parse the numbers out of, but more importantly as it doesn't return the correct numbers, but rounds everything off to the nearest 5% (and appears to have some special love of 30% and 70%).

      If every mathematical package returned a text string explaining the result rather than the result, because they don't trust you to interpret the result correctly, using Perl for math would be hell.

      Note the documentation says "use Statistics::Chisquare", but correct usage is "use Statistics::ChiSquare".

      Good bosses don't ask you to work on a solved problem. :)

        Emphasis on the word "good." :-)


        Peter L. Berghold -- Unix Professional
        Peter -at- Berghold -dot- Net; AOL IM redcowdawg Yahoo IM: blue_cowdawg
Re: calculate Chi-Square test
by moklevat (Priest) on Feb 06, 2013 at 15:02 UTC