Download Shareware and Freeware Software for Windows, Linux, Macintosh, PDA

line Home  |  About Us  |  Link To Us  |  FAQ  |  Contact

Serving Software Downloads in 956 Categories, Downloaded 50.225.090 Times

Trenton New Jersey Statistics software
Filter: All | Freeware | Demo
 

Trenton New Jersey Statistics

< 1 2 3 4 5 > 
Added: June 09, 2010 | Visits: 1.086

Statistics::RankOrder Statistics::RankOrder contains algorithms for determining overall rankings from a panel of judges. SYNOPSIS use Statistics::RankOrder; my $r = Statistics::RankOrder->new(); $r->add_judge( [qw( A B C )] ); $r->add_judge( [qw( A C B )] ); $r->add_judge( [qw( B A C )] ); my %ranks =...



Platforms: *nix

License: Freeware Size: 13.31 KB Download (95): Statistics::RankOrder Download

Added: June 01, 2010 | Visits: 1.110

Statistics::ChiSquare Statistics::ChiSquare - How well-distributed is your data? SYNOPSIS use Statistics::Chisquare; print chisquare(@array_of_numbers); Statistics::ChiSquare is available at a CPAN site near you. Suppose you flip a coin 100 times, and it turns up heads 70 times. Is the coin fair? Suppose...





Platforms: *nix

License: Freeware Size: 5.12 KB Download (101): Statistics::ChiSquare Download

Added: April 02, 2010 | Visits: 1.268

Statistics::SPC Statistics::SPC is a Perl module with calculations for Stastical Process Control (SPC). Creates thresholds based on the variability of all data, # of samples not meeting spec, and variablity within sample sets, all from training data. Note: this is only accurate for data which is normally...


Platforms: *nix

License: Freeware Size: 11.26 KB Download (136): Statistics::SPC Download

Added: August 01, 2010 | Visits: 1.373

Statistics::Smoothing::SGT Statistics::Smoothing::SGT is a Simple Good-Turing (SGT) smoothing implementation. SYNOPSIS Basic Usage use Statistics::Smoothing::SGT my $sgt = new Statistics::Smoothing::SGT($frequencyClasses, $total); $sgt->calculateValues(); $probabilities = $sgt->getProbabilities(); $newFrequencies...


Platforms: *nix

License: Freeware Size: 19.46 KB Download (107): Statistics::Smoothing::SGT Download

Added: April 07, 2010 | Visits: 1.124

Statistics::Contingency Statistics::Contingency is a Perl module to calculate precision, recall, F1, accuracy, etc. SYNOPSIS use Statistics::Contingency; my $s = new Statistics::Contingency(categories => @all_categories); while (...something...) { ... $s->add_result($assigned_categories, $correct_categories);...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (89): Statistics::Contingency Download

Added: November 07, 2010 | Visits: 949

Statistics::Candidates Candidates is a Perl5 module for manipulating candidate features (help module for Statistics::MaxEntropy). SYNOPSIS use Statistics::Candidates; # create a new candidates object and read candidate features $candidates = Statistics::Candidates->new($some_file); # checks for constant...


Platforms: *nix

License: Freeware Size: 41.98 KB Download (93): Statistics::Candidates Download

Added: February 09, 2010 | Visits: 1.056

Statistics::Cluto Statistics::Cluto package contains Perl binding for CLUTO. SYNOPSIS use Statistics::Cluto; use Data::Dumper; my $c = new Statistics::Cluto; $c->set_dense_matrix(4, 5, [ [8, 8, 0, 3, 2], [2, 9, 9, 1, 4], [7, 6, 1, 2, 3], [1, 7, 8, 2, 1] ]); $c->set_options({ rowlabels => [ row0,...


Platforms: *nix

License: Freeware Size: 27.65 KB Download (99): Statistics::Cluto Download

Added: March 03, 2010 | Visits: 1.203

amavisd-new amavisd-new is a high-performance and reliable interface between mailer (MTA) and one or more content checkers: virus scanners, and/or Mail::SpamAssassin Perl module. amavisd-new is written in Perl, ensuring high portability, reliability and maintainability. It talks to MTA via (E)SMTP or LMTP...


Platforms: *nix

License: Freeware Size: 819.2 KB Download (96): amavisd-new Download

Added: January 14, 2010 | Visits: 1.333

Perl IRC Statistics Generator Perl IRC Statistics Generator (pisg) is an IRC channel statics generator written in Perl, it creates statistics from different logfile formats. It was originally written because IRCStats wasnt open source. So heres an open source/GPLed version to anyone interested. Its a funny thing for your...


Platforms: *nix

License: Freeware Size: 235.52 KB Download (98): Perl IRC Statistics Generator Download

Added: March 26, 2010 | Visits: 958

Statistics::GammaDistribution Statistics::GammaDistribution Perl module represents a gamma distribution. SYNOPSIS use Statistics::GammaDistribution; my $g = Statistics::GammaDistribution->new(); $g->set_order(8.5); print $g->rand(1.0); my @alpha = (0.5,4.5,20.5,6.5,1.5,0.5); my @theta = $g->dirichlet_dist(@alpha);...


Platforms: *nix

License: Freeware Size: 10.24 KB Download (102): Statistics::GammaDistribution Download

Added: July 23, 2010 | Visits: 962

Statistics::Descriptive::Discrete Statistics::Descriptive::Discrete is a Perl module to compute descriptive statistics for discrete data sets. SYNOPSIS use Statistics::Descriptive::Discrete; my $stats = new Statistics::Descriptive::Discrete; $stats->add_data(1,10,2,0,1,4,5,1,10,8,7); print "count = ",$stats->count(),"n";...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (113): Statistics::Descriptive::Discrete Download

Added: February 17, 2010 | Visits: 1.206

Statistics::LineFit Statistics::LineFit module least squares line fit, weighted or unweighted. SYNOPSIS use Statistics::LineFit; $lineFit = Statistics::LineFit->new(); $lineFit->setData (@xValues, @yValues) or die "Invalid data"; ($intercept, $slope) = $lineFit->coefficients(); defined $intercept or die...


Platforms: *nix

License: Freeware Size: 24.58 KB Download (128): Statistics::LineFit Download

Added: January 14, 2010 | Visits: 878

Statistics::SDT Statistics::SDT Perl package contains signal detection theory measures of sensitivity and response-bias. SYNOPSIS use Statistics::SDT; $sdt = Statistics::SDT->new( { hits => 50, signal_trials => 50, false_alarms => 17, noise_trials => 25, correct => 2, } ); $d =...


Platforms: *nix

License: Freeware Size: 7.17 KB Download (87): Statistics::SDT Download

Added: July 04, 2010 | Visits: 1.073

Statistics::OLS Statistics::OLS is a Perl module to perform ordinary least squares and associated statistics. SYNOPSIS use Statistics::OLS; my $ls = Statistics::OLS->new(); $ls->setData (@xydataset) or die( $ls->error() ); $ls->setData (@xdataset, @ydataset); $ls->regress(); my ($intercept, $slope)...


Platforms: *nix

License: Freeware Size: 8.19 KB Download (96): Statistics::OLS Download

Added: April 23, 2010 | Visits: 995

Statistics::GaussHelmert Statistics::GaussHelmert is a general weighted least squares estimation module. SYNOPSIS use Statistics::GaussHelmert; # create an empty model my $estimation = new Statistics::GaussHelmert; # setup the model given observations $y, covariance matrices # $Sigma_yy, an initial guess $b0...


Platforms: *nix

License: Freeware Size: 13.31 KB Download (123): Statistics::GaussHelmert Download

Added: September 21, 2010 | Visits: 812

Statistics::LTU Statistics::LTU is an implementation of Linear Threshold Units. SYNOPSIS use Statistics::LTU; my $acr_ltu = new Statistics::LTU::ACR(3, 1); # 3 attributes, scaled $ltu->train([1,3,2], $LTU_PLUS); $ltu->train([-1,3,0], $LTU_MINUS); ... print "LTU looks like this:n"; $ltu->print;...


Platforms: *nix

License: Freeware Size: 16.38 KB Download (88): Statistics::LTU Download

Added: November 16, 2010 | Visits: 1.074

Statistics::ChisqIndep Statistics::ChisqIndep is a Perl module to perform chi-square test of independence (a.k.a. contingency tables). Synopsis #example for Statistics::ChisqIndep use strict; use Statistics::ChisqIndep; use POSIX; # input data in the form of the array of array references my @obs = ([15, 68,...


Platforms: *nix

License: Freeware Size: 3.07 KB Download (119): Statistics::ChisqIndep Download

Added: November 08, 2010 | Visits: 868

Statistics::PointEstimation Statistics::PointEstimation is a Perl module for computing confidence intervals in parameter estimation with Students T distribution. Statistics::PointEstimation::Sufficient - Perl module for computing the confidence intervals using sufficient statistics SYNOPSIS # example for...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (97): Statistics::PointEstimation Download

Added: April 23, 2010 | Visits: 832

Statistics::TTest Statistics::TTest is a Perl module to perform T-test on 2 independent samples. Statistics::TTest::Sufficient - Perl module to perfrom T-Test on 2 indepdent samples using sufficient statistics SYNOPSIS #example for Statistics::TTest use Statistics::PointEstimation; use Statistics::TTest;...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (91): Statistics::TTest Download

Released: August 17, 2012  |  Added: August 17, 2012 | Visits: 671

OLAP Statistics for SharePoint OLAP Statistics & Reporting for SharePoint enables you to connect to a SharePoint list, task or calendar and explore data in a multi-dimensional grid, pivot tables, filters, and graph or chart view. You can run this OLAP analysis tool on on each SharePoint list, with its own unique set of fields....


Platforms: Windows

License: Freeware Size: 5.65 MB Download (48): OLAP Statistics for SharePoint Download

< 1 2 3 4 5 >