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.197.897 Times

Statistics Fonts software
Filter: All | Freeware | Demo
 

Statistics Fonts

< 1 2 3 4 5 > 
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 (93): Statistics::Cluto Download

Added: May 10, 2013 | Visits: 2.216

Qmail-Scanner Statistics Qmail-Scanner Statistics (QSS) uses the Qmail-Scanner Logfile to generate daily, monthly, and yearly statistics. It also shows a complete list of viruses stopped by Qmail-Scanner, the top five domains from which the viruses came, as well as the countries.The application is easy to customize to...





Platforms: Windows, Mac, *nix, PHP, BSD Solaris

License: Freeware Download (131): Qmail-Scanner Statistics Download

Added: July 08, 2010 | Visits: 1.763

Statistics::Distributions Statistics::Distributions is a Perl module for calculating critical values and upper probabilities of common statistical distributions. SYNOPSIS use Statistics::Distributions; $chis=Statistics::Distributions::chisqrdistr (2,.05); print "Chi-squared-crit (2 degrees of freedom, 95th...


Platforms: *nix

License: Freeware Size: 6.14 KB Download (107): Statistics::Distributions 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: 957

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: 961

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: October 20, 2010 | Visits: 1.141

DejaVu fonts The DejaVu fonts are a font family based on the Bitstream Vera Fonts release 1.10 (see the list of other Bitstream Vera derivatives or Unicode Font Guide). DejaVu fonts purpose is to provide a wider range of characters (see Current status page for more information) while maintaining the...


Platforms: *nix

License: Freeware Download (106): DejaVu fonts 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: February 06, 2010 | Visits: 1.423

Web Statistics Montage Web Statistics Montage is a great web statistics tool to add to your arsenal. Firstly, you need to be using a web host that uses the cPanel control panel and that also has AWStats enabled. Since cPanel is the most popular control panel on the market for Linux servers, this script should be useful...


Platforms: *nix

License: Freeware Size: 12.29 KB Download (104): Web Statistics Montage 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: 831

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: June 28, 2016  |  Added: September 22, 2016 | Visits: 1.112

Fonts Manager Manage all your .ttf, .otf, .dfont and .ttc files without smothering Font Book. Support of Classic Mac OS 7.5-9.xx Font Suitcases. Drag entire fonts folders into Fonts Manager, and see them displayed without having to install them first. Try them out at a click of the mouse, and see how they...


Platforms: Mac

License: Shareware Cost: $19.99 USD Size: 279.85 MB Download (144): Fonts Manager Download

Released: June 03, 2008  |  Added: September 27, 2010 | Visits: 1.119

All My Fonts Professional Do you have hundreds of fonts on your computer? Ever tried to find that one particular font you needed but you don't remember the font name? Instead of searching and scrolling through dozens or hundreds of fonts names, you can now view all of your fonts right on the screen. All My Fonts...


Platforms: Windows

License: Shareware Cost: $14.99 USD Size: 1.6 MB Download (101): All My Fonts Professional Download

Released: February 28, 2012  |  Added: March 13, 2012 | Visits: 4.895

California Fonts Free Font Manager California Fonts Manager is the latest and fastest growing free font manager. This easy to use tool has an explorer-like interface that quickly shows you fonts currently installed on your computer (and ones that are not). If you're looking to install a new font, you can easily do with the...


Platforms: Windows

License: Freeware Size: 2.57 MB Download (652): California Fonts Free Font Manager Download

Released: October 01, 2012  |  Added: October 01, 2012 | Visits: 1.045

California Fonts Pokki The California Fonts Pokki allows you to easily browse, search, view, download and install fonts right from your own desktop. Our huge collection of over 20.000 free fonts are never more than a few clicks away, making it simple for anyone to create amazing presentations, letters, posters and...


Platforms: Windows

License: Freeware Size: 737.28 KB Download (72): California Fonts Pokki Download

< 1 2 3 4 5 >