baseball stats
Sponsored Links
Sponsored Links
Secleted [ 0 ] software to compare
Results 1 - 15 of about 240
BaseballNuke 1.0
BaseballNuke is a module for PHP-Nuke that allows for the administration of a baseball team. more>>
BaseballNuke is a module for PHP-Nuke that allows for the administration of a baseball team. BaseballNuke module gives managers of baseball teams a module for the PHP-Nuke CMS to manage their teams roster, stats, and schedules.
The module simplifies team administration and communication to fans. I plan to expand this module to include league management and expand it to other open source CMS projects.
<<lessThe module simplifies team administration and communication to fans. I plan to expand this module to include league management and expand it to other open source CMS projects.
Download (0.050MB)
Added: 2006-05-18 License: GPL (GNU General Public License) Price:
1255 downloads
Baseball::Sabermetrics 0.03
Baseball::Sabermetrics is a baseball statistics module. more>>
Baseball::Sabermetrics is a baseball statistics module.
SYNOPSIS
Baseball::Sabermetrics provides an easy interface for calculating baseball statistics, given a data importer. In this package, Ive written CPBL.pm for (Chinese Professional Baseball League, http://www.cpbl.com.tw).
use Baseball::Sabermetrics;
use Baseball::Sabermetrics::CPBL;
my $league = Baseball::Sabermetrics->new(league => CPBL);
# Actually these are predefined.
# Those data with p_ or _allowed here are for seperating pitchers
# and batters.
$league->define(
rc => ab * obp,
babip => (h_allowed - hr_allowed) / (p_pa - h_allowed - p_so - p_bb - hr_allowed,
# what started with $ will be reserved.
# Players have team and league predefined, and team has league.
formula1 => hr / $_->team->hr;
formula2 => hr / $_->league->hr;
complex => sub {
print "You can write a sub directlyn";
$_->slg - $_->ba;
},
...
);
# Some formulas can be applied to players, teams, and league, depend on what
# columns are used in the formula. For example, ab and obp are defined for
# players, teams, and league, so that rc is available for all of them.
# top 5 obp of teams
$_->print qw/ team name ba obp slg isop / for $league->top(teams, 5, obp);
# top 10 obp of players
$_->print qw/ team name ba obp slg isop / for $league->top(players, 10, obp);
# show a players information
$league->players(Chien-Ming Wang)->print qw/ win lose ip so bb whip go_ao /;
$league->teams(Yankees)->players(Chien-Ming Wang)->print qw/ win lose ip so bb whip go_ao /;
# show team statistics data (accumulated from players)
$league->{Yankees}->print qw/ win lose ip so bb whip go_ao /;
# give a brief report for pitchers/batters of the team
$league->{Yankees}->report_pitchers qw/ name ip p_so p_bb whip go_ab /;
$league->{Yankees}->report_batters qw/ name ba obp slg isop /;
$league->report_teams qw/ name win lose era obp /;
# show all available formula
print join , $league->formula_list;
Data Structure
Baseball::Sabermetrics is aimed for providing a base class of your interested teams (a league, for example). Youll need to provide a data retriever to pull data out. The following example shows how you have to fill data into this structure.
$league = {
teams => {
Yankees => {
players => {
"Chien-Ming Wang" => {
bio => {
bats => right, # coule be left, switch
throws => right,
},
ip => 57.33333333333,
game => 9,
...
fielding => {
p => {
tc => 43,
pop => 4,
...
},
# b1 => { }, b2 => { }, b3 => { },
# first, second and thrid baseman should be
# b1, b2, and b3 respectively for convenient in
# fielding context. Because the initial of the
# name of subroutine cant be a number in perl.
},
};
...
}
},
Athletics => {
...
},
},
};
TERMS
Available terms of players (including teams and league, which are accumulated from players and could be treated as an abstract player) are:
# pitching
p_game win lose tie gs sv bs hld cg sho ip p_pa np h_allowed
hr_allowed sh_allowed sf_allowed p_bb p_ibb hb p_so wp bk ra er
# batting
pa ab rbi r h 1b 2b 3b hr tb dp sh sf ibb bb hbp so sb cs
tc po a e f_dp ppo tp pb c_cs c_sb
# fielding
pos fgame tc po a e f_dp tp pb c_cs c_sb
And there are additional terms for team:
game win lose tie
<<lessSYNOPSIS
Baseball::Sabermetrics provides an easy interface for calculating baseball statistics, given a data importer. In this package, Ive written CPBL.pm for (Chinese Professional Baseball League, http://www.cpbl.com.tw).
use Baseball::Sabermetrics;
use Baseball::Sabermetrics::CPBL;
my $league = Baseball::Sabermetrics->new(league => CPBL);
# Actually these are predefined.
# Those data with p_ or _allowed here are for seperating pitchers
# and batters.
$league->define(
rc => ab * obp,
babip => (h_allowed - hr_allowed) / (p_pa - h_allowed - p_so - p_bb - hr_allowed,
# what started with $ will be reserved.
# Players have team and league predefined, and team has league.
formula1 => hr / $_->team->hr;
formula2 => hr / $_->league->hr;
complex => sub {
print "You can write a sub directlyn";
$_->slg - $_->ba;
},
...
);
# Some formulas can be applied to players, teams, and league, depend on what
# columns are used in the formula. For example, ab and obp are defined for
# players, teams, and league, so that rc is available for all of them.
# top 5 obp of teams
$_->print qw/ team name ba obp slg isop / for $league->top(teams, 5, obp);
# top 10 obp of players
$_->print qw/ team name ba obp slg isop / for $league->top(players, 10, obp);
# show a players information
$league->players(Chien-Ming Wang)->print qw/ win lose ip so bb whip go_ao /;
$league->teams(Yankees)->players(Chien-Ming Wang)->print qw/ win lose ip so bb whip go_ao /;
# show team statistics data (accumulated from players)
$league->{Yankees}->print qw/ win lose ip so bb whip go_ao /;
# give a brief report for pitchers/batters of the team
$league->{Yankees}->report_pitchers qw/ name ip p_so p_bb whip go_ab /;
$league->{Yankees}->report_batters qw/ name ba obp slg isop /;
$league->report_teams qw/ name win lose era obp /;
# show all available formula
print join , $league->formula_list;
Data Structure
Baseball::Sabermetrics is aimed for providing a base class of your interested teams (a league, for example). Youll need to provide a data retriever to pull data out. The following example shows how you have to fill data into this structure.
$league = {
teams => {
Yankees => {
players => {
"Chien-Ming Wang" => {
bio => {
bats => right, # coule be left, switch
throws => right,
},
ip => 57.33333333333,
game => 9,
...
fielding => {
p => {
tc => 43,
pop => 4,
...
},
# b1 => { }, b2 => { }, b3 => { },
# first, second and thrid baseman should be
# b1, b2, and b3 respectively for convenient in
# fielding context. Because the initial of the
# name of subroutine cant be a number in perl.
},
};
...
}
},
Athletics => {
...
},
},
};
TERMS
Available terms of players (including teams and league, which are accumulated from players and could be treated as an abstract player) are:
# pitching
p_game win lose tie gs sv bs hld cg sho ip p_pa np h_allowed
hr_allowed sh_allowed sf_allowed p_bb p_ibb hb p_so wp bk ra er
# batting
pa ab rbi r h 1b 2b 3b hr tb dp sh sf ibb bb hbp so sb cs
tc po a e f_dp ppo tp pb c_cs c_sb
# fielding
pos fgame tc po a e f_dp tp pb c_cs c_sb
And there are additional terms for team:
game win lose tie
Download (0.030MB)
Added: 2007-01-04 License: Perl Artistic License Price:
1025 downloads
Sendmail delivery stats 1.4
Sendmail delivery stats is a Perl script to analyze Sendmail log files and produce mean delivery times. more>>
Sendmail delivery stats is a Perl script to analyze Sendmail log files and produce mean delivery times. It dumps all data in CSV format.
Recently I had to bear with mail server analyze, serving traffic on level +10k messages a day. And there were some degradation of services felt by users, but there was no stright pattern what mails are delivered with bigger latency. Since this was Sendmail powered site I wrote simple tool in Perl to help with analysis.
I hope it is simple to use. What it does ? It collects all log entries, which are related to successful mail delivery. Groups it by domain and calculates average delivery time (time to leave queue - I is rather impossible to estimate time spend in others servers queues). Most useful (for me) is -a option, which makes all output in CSV format, for easy use in further analysis.
It was tested on logs from Sendmail 8.13.x and I belive it calculates proper values.
Enhancements:
- The HTML output format was added, with possible template use.
- Output is now sorted.
- Minor bugfixes and code cleanup were done.
<<lessRecently I had to bear with mail server analyze, serving traffic on level +10k messages a day. And there were some degradation of services felt by users, but there was no stright pattern what mails are delivered with bigger latency. Since this was Sendmail powered site I wrote simple tool in Perl to help with analysis.
I hope it is simple to use. What it does ? It collects all log entries, which are related to successful mail delivery. Groups it by domain and calculates average delivery time (time to leave queue - I is rather impossible to estimate time spend in others servers queues). Most useful (for me) is -a option, which makes all output in CSV format, for easy use in further analysis.
It was tested on logs from Sendmail 8.13.x and I belive it calculates proper values.
Enhancements:
- The HTML output format was added, with possible template use.
- Output is now sorted.
- Minor bugfixes and code cleanup were done.
Download (0.004MB)
Added: 2005-11-06 License: GPL (GNU General Public License) Price:
1451 downloads
Fear Stats 1.1.8
Fear Stats generates player stats from F.E.A.R. server log files, and stores them in a MySQL database. more>>
Fear Stats project generates player stats from F.E.A.R. server log files, and stores them in a MySQL database.
Enhancements:
- Improved Scoring Calculations for all game modes
- Created new Sub to handle checking for existing records.
- Transactoins now fully supported for InnoDB
- Corrected Players Objective Score not calculating into total session score.
<<lessEnhancements:
- Improved Scoring Calculations for all game modes
- Created new Sub to handle checking for existing records.
- Transactoins now fully supported for InnoDB
- Corrected Players Objective Score not calculating into total session score.
Download (0.085MB)
Added: 2007-03-02 License: GPL (GNU General Public License) Price:
971 downloads
ccache stats 0.2
ccache stats is a simple way to get real time ccache stats for gentoo maniacs!! more>>
ccache stats is a simple way to get real time ccache stats for gentoo maniacs!! I was in trouble formatting output.
Finally I wrote a horrible perl script to do it, trying to limit damages caused by file accesses...
Im not a programmer and I havent so much time, so Im sure it can be improved.. First of all Ill be involved in improving graphics!!
Feel free to give suggestion!
OK.. At the moment I assume you install it by superkaramba tool.. so I match its download directory to run the script stats.pl.. If you download it via website make sure the corresponding line in .theme file match the correct dir! (Im studying a way to skip this problem)
<<lessFinally I wrote a horrible perl script to do it, trying to limit damages caused by file accesses...
Im not a programmer and I havent so much time, so Im sure it can be improved.. First of all Ill be involved in improving graphics!!
Feel free to give suggestion!
OK.. At the moment I assume you install it by superkaramba tool.. so I match its download directory to run the script stats.pl.. If you download it via website make sure the corresponding line in .theme file match the correct dir! (Im studying a way to skip this problem)
Download (0.004MB)
Added: 2006-06-21 License: GPL (GNU General Public License) Price:
1220 downloads
Access Stats 1.12
Access Stats provides a script that enables you to keep track of activities on your web site. more>>
Access Stats provides a script that enables you to keep track of activities on your web site.
Access Stats allows you to keep track of activities on your web site.
It extracts some statistic from a log file generated by log.pl.
These reports are generated by Access Stats:
- Visits by day
- Visits by hour
- Visits by week-day
- Referer
- Browser
- Operating System
- Countries
- Hostnames
<<lessAccess Stats allows you to keep track of activities on your web site.
It extracts some statistic from a log file generated by log.pl.
These reports are generated by Access Stats:
- Visits by day
- Visits by hour
- Visits by week-day
- Referer
- Browser
- Operating System
- Countries
- Hostnames
Download (0.059MB)
Added: 2007-04-27 License: GPL (GNU General Public License) Price:
916 downloads
StepStats 1.0
StepStats is a smart and simple application that allows you to keep track of your sport successes. more>>
StepStats is a smart and simple application that allows you to keep track of your sport successes. The application is perfectly suitable for all sports, where you want to create stats on distance, time or speed.
Main features:
- simple, understandable interface
- keeps track of date, distance, steps and time
- gives you stats with overall values and a nice graph with your speed
- automatic backup of your data once a week to prevent data loss or corruption
- available for MacOS X, Windows and Linux
- and best of all - It is Freeware
<<lessMain features:
- simple, understandable interface
- keeps track of date, distance, steps and time
- gives you stats with overall values and a nice graph with your speed
- automatic backup of your data once a week to prevent data loss or corruption
- available for MacOS X, Windows and Linux
- and best of all - It is Freeware
Download (2.5MB)
Added: 2007-08-06 License: Freeware Price:
809 downloads
Vice Stats 1.1
Vice Stats is an advanced Web site statistics gathering package. more>>
Vice Stats is an advanced Web site statistics gathering package. Vice Stats collects data about the resources in a Web site, the visitors to that site, and the referring resources. Vice Stats runs in PHP and stores its data in a MySQL database.
Enhancements:
- The $vs_resourceQuery parameter is properly taken into effect in the Resources tab on the front page.
- The $vs_resourceHost parameter was added for sites that have more than one subdomain.
- There are updates to the browser and IP location databases.
<<lessEnhancements:
- The $vs_resourceQuery parameter is properly taken into effect in the Resources tab on the front page.
- The $vs_resourceHost parameter was added for sites that have more than one subdomain.
- There are updates to the browser and IP location databases.
Download (0.56MB)
Added: 2006-11-15 License: GPL (GNU General Public License) Price:
1074 downloads
WWW::Baseball::NPB 0.03
WWW::Baseball::NPB is a Perl module that fetches Japanese baseball games information. more>>
WWW::Baseball::NPB is a Perl module that fetches Japanese baseball games information.
SYNOPSIS
use WWW::Baseball::NPB;
my $baseball = WWW::Baseball::NPB->new;
my @games = $baseball->games;
# or @games = $baseball->games(central);
for my $game (@games) {
my $home = $game->home;
my $visitor = $game->visitor;
printf "%s %d - %d %s (%s) [%s]n",
$home, $game->score($home), $game->score($visitor), $visitor,
$game->status, $game->stadium;
}
WWW::Baseball::NPB provides you a way to fetch and extract Japanese baseball games information via Yahoo! Baseball. (NPB = Nippon Professional Baseball)
<<lessSYNOPSIS
use WWW::Baseball::NPB;
my $baseball = WWW::Baseball::NPB->new;
my @games = $baseball->games;
# or @games = $baseball->games(central);
for my $game (@games) {
my $home = $game->home;
my $visitor = $game->visitor;
printf "%s %d - %d %s (%s) [%s]n",
$home, $game->score($home), $game->score($visitor), $visitor,
$game->status, $game->stadium;
}
WWW::Baseball::NPB provides you a way to fetch and extract Japanese baseball games information via Yahoo! Baseball. (NPB = Nippon Professional Baseball)
Download (0.010MB)
Added: 2006-12-14 License: Perl Artistic License Price:
1044 downloads
NetStats Baseball 0.9.1
NetStats Baseball project consists of a simulation of major league baseball. more>>
NetStats Baseball project consists of a simulation of major league baseball.
NetStats Baseball is a simulation of major league baseball which will play single games and entire seasons.
It will keep statistics for the individual players and the teams. It will keep track of the season schedule as well as seasonal and lifetime records.
Enhancements:
- Separate two compound assignments where x and x++ were used; this technically isnt well-defined in C and could cause portability problems
- Fix a call of strncpy() to strcpy()
- Remove prototypes for string.h functions in editdata/glob.h; replace with an include of the standard header (causes potential portability problems since these arent declared the same way on all systems)
- correct possible segfault after the welcome screen
- code cleanup
- include current half inning on game-play display
- no parameters now acceptable with client (playbb) ..in this case client connects to localhost
- "help" is printable
- real-life season results are available
- implement autoconf
<<lessNetStats Baseball is a simulation of major league baseball which will play single games and entire seasons.
It will keep statistics for the individual players and the teams. It will keep track of the season schedule as well as seasonal and lifetime records.
Enhancements:
- Separate two compound assignments where x and x++ were used; this technically isnt well-defined in C and could cause portability problems
- Fix a call of strncpy() to strcpy()
- Remove prototypes for string.h functions in editdata/glob.h; replace with an include of the standard header (causes potential portability problems since these arent declared the same way on all systems)
- correct possible segfault after the welcome screen
- code cleanup
- include current half inning on game-play display
- no parameters now acceptable with client (playbb) ..in this case client connects to localhost
- "help" is printable
- real-life season results are available
- implement autoconf
Download (0.20MB)
Added: 2007-01-10 License: Freely Distributable Price:
1018 downloads
OpenWebStats 1.1
OpenWebStats is a PHP stats application that reads Apache log files. more>>
OpenWebStats is a PHP stats application that reads Apache log files and imports the data to a MySQL database.
It then provides an awstats-style reporting tool so that you can review stats on demand from the database. Stats updates are available through cron jobs or the Web interface.
Enhancements:
- Changed Year from hardcoded 2005 to a dynamic current and last year.
- Added full page views to hosts, referers, keywords, and pages
- Drastically improved the class_apache_logs_import.php to not readin the full log to an array. Thus no more memory errors.
- Updated the update now message with flush to show that it is running.
<<lessIt then provides an awstats-style reporting tool so that you can review stats on demand from the database. Stats updates are available through cron jobs or the Web interface.
Enhancements:
- Changed Year from hardcoded 2005 to a dynamic current and last year.
- Added full page views to hosts, referers, keywords, and pages
- Drastically improved the class_apache_logs_import.php to not readin the full log to an array. Thus no more memory errors.
- Updated the update now message with flush to show that it is running.
Download (0.080MB)
Added: 2005-07-06 License: GPL (GNU General Public License) Price:
1570 downloads
Games::Baseball::Scorecard 0.03
Games::Baseball::Scorecard is a Perl module. more>>
Games::Baseball::Scorecard is a Perl module.
SYNOPSIS
my $score = Games::Baseball::Scorecard->new($dir, $name, {
color => [ .4, .4, .4 ], # grey
fonts => [ # Myriad Condensed regular/bold
[ myriadrcrrl => 9 ],
[ myriadrcbrl => 14 ],
[ myriadrcrrl => 14 ],
[ myriadrcbrl => 22 ],
],
});
# fill initial scorecard out
$s->init({
scorer => Pudge,
date => 2004-10-24, 20:05-23:25,
at => Fenway Park, Boston,
temp => 48 clear,
wind => 7 to RF,
att => 35,001,
home => {
team => Boston Red Sox,
starter => 38, # jersey number
lineup => [
# [ num, position ],
[ 18, 8 ], # Damon, starting at CF
# ...
],
roster => {
# num => name
18 => Damon, Johnny,
38 => Schilling, Curt,
# ...
},
},
away => {
team => St. Louis Cardinals,
# ...
}
});
# draw the game
$s->inn; # new inning / end of last inning
$s->ab; # new at-bat
# works to full count
$s->pitches(qw(s b s b b f));
# struck out looking
$s->out(!K);
$s->ab;
# home run to left-center
$s->hit(4, lc);
# calculate/draw stats
$self->totals;
# finish the job
$s->generate;
# open final PDF
$s->pdfopen;
Games::Baseball::Scorecard is a frontend to a PDF scorecard written in Metapost by Christopher Swingley (http://www.frontier.iarc.uaf.edu/~cswingle/baseball/scorecards.php). That scorecard is drawn out, and has a nice API for actually drawing out the elements of the game: all the ball, strikes, outs, etc.
Being Metapost, it is laborious to do all this. So this module provides a nice frontend, that also keeps track of balls and strikes and hits and runs and outs and more, making input of the game quite simple and efficient.
This module does not include the entire API, but most of it. Patches and ideas welcome. Feel free to call output directly if you want to generate Metapost on your own, or to modify the $SCORECARD variable (which contains the base Metapost code), or the $TEX (single page) and $TEXD (duplex) TeX files.
I wont give a tutorial on scoring baseball games, or on Metapost, below. Seek other resources (Swingleys URL above has a nice tutorial on scoring baseball games, using the scorecard he designed, which is what were using here).
<<lessSYNOPSIS
my $score = Games::Baseball::Scorecard->new($dir, $name, {
color => [ .4, .4, .4 ], # grey
fonts => [ # Myriad Condensed regular/bold
[ myriadrcrrl => 9 ],
[ myriadrcbrl => 14 ],
[ myriadrcrrl => 14 ],
[ myriadrcbrl => 22 ],
],
});
# fill initial scorecard out
$s->init({
scorer => Pudge,
date => 2004-10-24, 20:05-23:25,
at => Fenway Park, Boston,
temp => 48 clear,
wind => 7 to RF,
att => 35,001,
home => {
team => Boston Red Sox,
starter => 38, # jersey number
lineup => [
# [ num, position ],
[ 18, 8 ], # Damon, starting at CF
# ...
],
roster => {
# num => name
18 => Damon, Johnny,
38 => Schilling, Curt,
# ...
},
},
away => {
team => St. Louis Cardinals,
# ...
}
});
# draw the game
$s->inn; # new inning / end of last inning
$s->ab; # new at-bat
# works to full count
$s->pitches(qw(s b s b b f));
# struck out looking
$s->out(!K);
$s->ab;
# home run to left-center
$s->hit(4, lc);
# calculate/draw stats
$self->totals;
# finish the job
$s->generate;
# open final PDF
$s->pdfopen;
Games::Baseball::Scorecard is a frontend to a PDF scorecard written in Metapost by Christopher Swingley (http://www.frontier.iarc.uaf.edu/~cswingle/baseball/scorecards.php). That scorecard is drawn out, and has a nice API for actually drawing out the elements of the game: all the ball, strikes, outs, etc.
Being Metapost, it is laborious to do all this. So this module provides a nice frontend, that also keeps track of balls and strikes and hits and runs and outs and more, making input of the game quite simple and efficient.
This module does not include the entire API, but most of it. Patches and ideas welcome. Feel free to call output directly if you want to generate Metapost on your own, or to modify the $SCORECARD variable (which contains the base Metapost code), or the $TEX (single page) and $TEXD (duplex) TeX files.
I wont give a tutorial on scoring baseball games, or on Metapost, below. Seek other resources (Swingleys URL above has a nice tutorial on scoring baseball games, using the scorecard he designed, which is what were using here).
Download (0.34MB)
Added: 2006-07-31 License: GPL (GNU General Public License) Price:
710 downloads
htb-stats 1.25
htb-stats.sh is a useful script for htb class summarization. more>>
htb-stats.sh is a useful script for htb class summarization. htb-stats is designed to allow simple, non-root usage, e.g. "./htb-stats.sh eth0".
If an htb.init, tcng.init, or htb-gen configuration is found, it will label traffic output with information taken from respective configuration files.
Enhancements:
- support label-less , adapt to newer tcs backlog output
<<lessIf an htb.init, tcng.init, or htb-gen configuration is found, it will label traffic output with information taken from respective configuration files.
Enhancements:
- support label-less , adapt to newer tcs backlog output
Download (0.008MB)
Added: 2006-04-13 License: GPL (GNU General Public License) Price:
1294 downloads
mroovca stats 0.5.3
mroovca stats is a Web site statistics generator with various functions and tables. more>>
mroovca stats is a Web site statistics generator with various functions and tables. mroovca stats is simple, configurable, and provides an administrative interface.
It can measure statistics concerning the client browser, geolocalization, connection type, and referers. It can also recognize Polish towns.
In 2001 ive started to write my own version of web-site(s) statisics, since that time i had to change my name, changed from flat-file to datadase and finally rewrite whole code to be more flexible.
To work with databases it uses "dbx" functions module from PHP. At this moment its tested only with MySQL and prepared to work with this db engine. But in close future i will provide installer, updater and support for other database engines.
But its not end. im working for more enchancements and statistics including tables, charts, maps, etc.
Just download, extract from archive, configure and use it!!
Main features:
- easy instller/updater (for versions >=0.4.4)
- language support - english and polish at this time
- prepared for work with more than one websites/accounts
- root panel for adding and removing accounts
- admin panel for accounts
- all accounts have their own password
- access for viewing stats for all or on passowrd
- showing stats with or without reloads
- timezone correction
- excluded hosts or (sub)domains
<<lessIt can measure statistics concerning the client browser, geolocalization, connection type, and referers. It can also recognize Polish towns.
In 2001 ive started to write my own version of web-site(s) statisics, since that time i had to change my name, changed from flat-file to datadase and finally rewrite whole code to be more flexible.
To work with databases it uses "dbx" functions module from PHP. At this moment its tested only with MySQL and prepared to work with this db engine. But in close future i will provide installer, updater and support for other database engines.
But its not end. im working for more enchancements and statistics including tables, charts, maps, etc.
Just download, extract from archive, configure and use it!!
Main features:
- easy instller/updater (for versions >=0.4.4)
- language support - english and polish at this time
- prepared for work with more than one websites/accounts
- root panel for adding and removing accounts
- admin panel for accounts
- all accounts have their own password
- access for viewing stats for all or on passowrd
- showing stats with or without reloads
- timezone correction
- excluded hosts or (sub)domains
Download (0.29MB)
Added: 2006-05-08 License: GPL (GNU General Public License) Price:
1264 downloads
Listat 2.0
Listat is a free, professional package that generates interesting statistics on mailing list demographics. more>>
Listat is a free, professional package that generates interesting statistics on mailing list demographics.
Main features:
- Stats in text form and HTML form
- Flags for the countries are included in the HTML stats
- The report can be sorted by the domain name or by the number of subscribers from a domain name
- Reports on unrecognized domains
- User configurable domain file: can be extended if more domain names are introduced
- Additional miscellaneous statistical information reported: mean, median, mode, standard deviation, longest length, longest email addresses shortest length, shortest email addresses
Listat creates three reports:
- Domain Report
- Subdomain Report
- Stats Report
Domain Report
The format of this report is:
Domain name Count Percentage Country
This report has following features:
- The report can be sorted by the domain name or by the number of subscribers from a domain name.
- Flag images for the countries are included in the HTML stats.
- Reports on unrecognized domains and invalid addresses.
- User configurable domain file: can be extended if more domain names are added.
Subdomain Report
The format of this report is:
Subdomain Count %age Description
This report has following features:
- Can be generated on any subdomain
- Top n (user configurable) subdomains can be listed
- Subdomain description is listed
Stats Report
This report includes following statistical information:
Email addresses:
- Longest
- Shortest
- Mean
- Median
- Mode
- Standard Deviation
Enhancements:
- The script can run from the command line or as a CGI without needing any modification.
- The domain listing was updated, and new crisp flag images are used.
- The code was cleaned up, including speedups.
<<lessMain features:
- Stats in text form and HTML form
- Flags for the countries are included in the HTML stats
- The report can be sorted by the domain name or by the number of subscribers from a domain name
- Reports on unrecognized domains
- User configurable domain file: can be extended if more domain names are introduced
- Additional miscellaneous statistical information reported: mean, median, mode, standard deviation, longest length, longest email addresses shortest length, shortest email addresses
Listat creates three reports:
- Domain Report
- Subdomain Report
- Stats Report
Domain Report
The format of this report is:
Domain name Count Percentage Country
This report has following features:
- The report can be sorted by the domain name or by the number of subscribers from a domain name.
- Flag images for the countries are included in the HTML stats.
- Reports on unrecognized domains and invalid addresses.
- User configurable domain file: can be extended if more domain names are added.
Subdomain Report
The format of this report is:
Subdomain Count %age Description
This report has following features:
- Can be generated on any subdomain
- Top n (user configurable) subdomains can be listed
- Subdomain description is listed
Stats Report
This report includes following statistical information:
Email addresses:
- Longest
- Shortest
- Mean
- Median
- Mode
- Standard Deviation
Enhancements:
- The script can run from the command line or as a CGI without needing any modification.
- The domain listing was updated, and new crisp flag images are used.
- The code was cleaned up, including speedups.
Download (1.8MB)
Added: 2006-10-30 License: GPL (GNU General Public License) Price:
1090 downloads
Secleted [ 0 ] software to compare
Copyright Notice:
Software piracy is theft, Using crack, password, serial numbers, registration codes, key generators is illegal and prevent future software development. The above baseball stats search only lists software in full, demo and trial versions for free download. Download links are directly from our mirror sites or publisher sites, torrent files or links from rapidshare.com, yousendit.com or megaupload.com are not allowed