-
-
21 May 2003 09:53:37 UTC
- Distribution: Statistics-DependantTTest
- Module version: 0.03
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues (5)
- Testers (2331 / 239 / 15)
- Kwalitee
Bus factor: 0- 89.86% Coverage
- License: unknown
- Activity
24 month- Tools
- Download (2.48KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
- Dependencies
- unknown
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Statistics::DependantTTest - Perl module to perform Student's dependant or paired T-test on 2 paired samples.
SYNOPSIS
use Statistics::DependantTTest; use Statistics::Distributions;
my @before_values=('5','5','6','7','7'); my @after_values=('5','6','6.5','6.5','7.5');
my $t_test = new DependantTTest; $t_test->load_data('before',@before_values); $t_test->load_data('after',@after_values); my ($t_value,$deg_freedom) = $t_test->perform_t_test('before','after'); my ($p_value) = Statistics::Distributions::tprob ($deg_freedom,$t_value);
DESCRIPTION
This is the statistical T-Test module to compare 2 paired data sets. It takes 2 arrays of values and will return the t value and degrees of freedom in order to test the null hypothesis. The t values and degrees of freedom may be correlated to a p value using the Statistics::Distributions module.
AUTHOR
Martin Lee, Star Technology Group (mlee@startechgroup.co.uk)
SEE ALSO
Statistics::Distributions Statistics::TTest
Module Install Instructions
To install Statistics::DependantTTest, copy and paste the appropriate command in to your terminal.
cpanm Statistics::DependantTTest
perl -MCPAN -e shell install Statistics::DependantTTest
For more information on module installation, please visit the detailed CPAN module installation guide.