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

Statistics::PointEstimation 1.1.0

  Date Added: November 08, 2010  |  Visits: 868

Statistics::PointEstimation

Report Broken Link
Printer Friendly Version


Product Homepage
Download (97 downloads)



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 Statistics::PointEstimation use Statistics::PointEstimation; my @r=(); for($i=1;$i<=32;$i++) #generate a uniformly distributed sample with mean=5 { $rand=rand(10); push @r,$rand; } my $stat = new Statistics::PointEstimation; $stat->set_significance(95); #set the significance(confidence) level to 95% $stat->add_data(@r); $stat->output_confidence_interval(); #output summary $stat->print_confidence_interval(); #output the data hash related to confidence interval estimation #the following is the same as $stat->output_confidence_interval(); print "Summary from the observed values of the sample:n"; print "tsample size= ", $stat->count()," , degree of freedom=", $stat->df(), "n"; print "tmean=", $stat->mean()," , variance=", $stat->variance(),"n"; print "tstandard deviation=", $stat->standard_deviation()," , standard error=", $stat->standard_error(),"n"; print "t the estimate of the mean is ", $stat->mean()," +/- ",$stat->delta(),"nt", " or (",$stat->lower_clm()," to ",$stat->upper_clm," ) with ",$stat->significance," % of confidencen"; print "t t-statistic=T=",$stat->t_statistic()," , Prob >|T|=",$stat->t_prob(),"n"; #example for Statistics::PointEstimation::Sufficient use strict; use Statistics::PointEstimation; my ($count,$mean,$variance)=(30,3.996,1.235); my $stat = new Statistics::PointEstimation::Sufficient; $stat->set_significance(99); $stat->load_data($count,$mean,$variance); $stat->output_confidence_interval(); $stat->set_significance(95); $stat->output_confidence_interval(); Statistics::PointEstimation This module is a subclass of Statistics::Descriptive::Full. It uses T-distribution for point estimation assuming the data is normally distributed or the sample size is sufficiently large. It overrides the add_data() method in Statistics::Descriptive to compute the confidence interval with the specified significance level (default is 95%). It also computes the t-statistic=T and Prob>|T| in case of hypothesis testing of paired T-tests. Statistics::PointEstimation::Sufficient This module is a subclass of Statistics::PointEstimation. Instead of taking the real data points as the input, it will compute the confidence intervals based on the sufficient statistics and the sample size inputted. To use this module, you need to pass the sample size, the sample mean , and the sample variance into the load_data() function. The output will be exactly the same as the Statistics::PointEstimation Module..

Requirements: No special requirements
Platforms: Linux
Keyword: Confidence Confidence Intervals Data Libraries Module Output Perl Module Pointestimation Print Programming Statisticspointestimation
Users rating: 0/10

License: Freeware Size: 6.14 KB
USER REVIEWS
More Reviews or Write Review


STATISTICS::POINTESTIMATION RELATED
Database Tools  -  Local database 3.7.7.214
Data export module "Local database" for program Accurate Printer Monitor represents a set of tools for exporting any parsed serial data to different popular formats, such as: Microsoft Excel, RTF, HTML, CSV, DIFF, SYLK, Plain text, Windows...
 
Database Tools  -  SQL Database Professional 3.7.7.221
The SQL Database Professional data export module for Accurate Printer Monitor is used for recording/saving variables the parser receives and extracts from the stream of bytes into SQL-compatible databases, such as SQLBase, Oracle, Microsoft...
 
Libraries  -  SQL Database Professional plugin 3.7.7.221
The "SQL Database Professional" data publishing module for Advanced Serial Data Logger is designed for recording/saving variables the parser receives and extracts from the stream of bytes into SQL-compatible databases, such as SQLBase, Oracle, M...
 
Libraries  -  Direct Excel Connection plugin 3.7.7.214
Data publication module "Direct Excel Connection" for Advanced Serial Data Logger is created for data transmit of received by Advanced Serial Data Logger and picked out from byte flow by parser to programs Microsoft Excel, without use of additio...
 
Libraries  -  Data::CTable 1.03
Data::CTable is a Perl module that helps you read, write, manipulate tabular data. SYNOPSIS ## Read some data files in various tabular formats use Data::CTable; my $People = Data::CTable->new("people.merge.mac.txt"); my $Stats =...
153.6 KB  
Libraries  -  Data::Dumper 2.121
Data::Dumper module contains stringified perl data structures, suitable for both printing and eval. SYNOPSIS use Data::Dumper; # simple procedural interface print Dumper($foo, $bar); # extended usage with names print...
31.74 KB  
Libraries  -  Data::Encrypted 0.07
Data::Encrypted is a Perl module to transparently store encrypted data via RSA. SYNOPSIS # functional interface: use Data::Encrypted file => "./.$0-encrypted-data", qw(encrypted); # note: login and password are not *really* the login and #...
7.17 KB  
Libraries  -  Data::Phrasebook::Loader::XML 0.12
Data::Phrasebook::Loader::XML Perl module can abstract your phrases with XML. SYNOPSIS use Data::Phrasebook; my $q = Data::Phrasebook->new( class => Fnerk, loader => XML, file => phrases.xml, dict => Dictionary, # optional ); OR my...
17.41 KB  
Libraries  -  Data::Stag 0.10
Data::Stag is a Perl module with structured tags datastructures. SYNOPSIS # PROCEDURAL USAGE use Data::Stag qw(:all); $doc = stag_parse($file); @persons = stag_find($doc, "person"); foreach $p (@persons) { printf "%s, %s phone: %sn",...
440.32 KB  
Libraries  -  Data::PropertyList 1998.1217
Data::PropertyList is a Perl module that can convert arbitrary objects to/from strings. SYNOPSIS use Data::PropertyList qw(astext fromtext); $hash_ref = { items => [ 7 .. 11 ], key => value }; $string = astext($hash_ref); # ... $hash_ref...
8.19 KB  
NEW DOWNLOADS IN PROGRAMMING, LIBRARIES
Programming  -  Cedalion for Linux 0.2.6
Cedalion is a programming language that allows its users to add new abstractions and define (and use) internal DSLs. Its innovation is in the fact that it uses projectional editing to allow the new abstractions to have no syntactic limitations.
471.04 KB  
Programming  -  Math::GMPf 0.29
Math::GMPf - perl interface to the GMP library's floating point (mpf) functions.
30.72 KB  
Programming  -  Net::Wire10 1.08
Net::Wire10 is a Pure Perl connector that talks to Sphinx, MySQL and Drizzle servers. Net::Wire10 implements the low-level network protocol, alias the MySQL wire protocol version 10, necessary for talking to one of the aforementioned...
30.72 KB  
Programming  -  logilab-common 0.56.2
a bunch of modules providing low level functionnalities shared among some python projects devel Please note that some of the modules have some extra dependencies. For instance, logilab.common.db will require a db-api 2.0 compliant...
174.08 KB  
Programming  -  OpenSSL for linux 1.0.0a
The OpenSSL Project is a collaborative effort to develop a robust, commercial-grade, full-featured, and Open Source toolkit implementing the Secure Sockets Layer (SSL v2/v3) and Transport Layer Security (TLS v1) protocols as well as a...
3.83 MB  
Libraries  -  wolfSSL 4.0.0
The wolfSSL embedded SSL/TLS library is a lightweight SSL library written in ANSI standard C and targeted for embedded and RTOS environments - primarily because of its small size, speed, and feature set. It is commonly used in standard operating...
3.88 MB  
Libraries  -  EuGTK 4.8.9
Makes it easy to develop good- looking, fast, cross-platform programs that run on Linux, OS X, and Windows. Euphoria is a very fast interpreted/compiled language with straight-forward syntax. EuGTK allows programming in a clean, object-oriented...
10.68 MB  
Libraries  -  Linux User Group Library Manager 1.0
The LUG Library Manager is a project to help Linux User Groups start their own library. A LUG library is helpful to the community at large because it increases access to information, and gives everyone the opportunity to become more knowledgeable.
5.35 KB  
Libraries  -  Module::MakefilePL::Parse 0.12
Module::MakefilePL::Parse is a Perl module to parse required modules from Makefile.PL. SYNOPSIS use Module::MakefilePL::Parse; open $fh, Makefile.PL; $parser = Module::MakefilePL::Parse->new( join("", ) ); $info = $parser->required;...
8.19 KB  
Libraries  -  sqlpp 0.06
sqlpp Perl package is a SQL preprocessor. sqlpp is a conventional cpp-alike preprocessor taught to understand SQL ( PgSQL, in particular) syntax specificities. In addition to the standard #define/#ifdef/#else/#endif cohort, provides also...
10.24 KB