1 | # -*- coding: utf-8; mode: tcl; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- vim:fenc=utf-8:ft=tcl:et:sw=4:ts=4:sts=4 |
---|
2 | # $Id$ |
---|
3 | |
---|
4 | PortSystem 1.0 |
---|
5 | PortGroup perl5 1.0 |
---|
6 | |
---|
7 | perl5.setup Statistics-Descriptive 3.0200 |
---|
8 | maintainers nomaintainer |
---|
9 | platforms darwin |
---|
10 | supported_archs noarch |
---|
11 | |
---|
12 | description basic perl functions providing descriptive statistics |
---|
13 | long_description \ |
---|
14 | Statistics::Descriptive provides basic functions used in descriptive \ |
---|
15 | statistics. It has an object oriented design and supports two different \ |
---|
16 | types of data storage and calculation objects: sparse and full. With the \ |
---|
17 | sparse method, none of the data is stored and only a few statistical \ |
---|
18 | measures are available. Using the full method, the entire data set is \ |
---|
19 | retained and additional functions are available. \ |
---|
20 | \ |
---|
21 | Whenever a division by zero may occur, the denominator is checked to be \ |
---|
22 | greater than the value \$Statistics::Descriptive::Tolerance, which defaults \ |
---|
23 | to 0.0. You may want to change this value to some small positive value such \ |
---|
24 | as 1e-24 in order to obtain error messages in case of very small \ |
---|
25 | denominators. \ |
---|
26 | \ |
---|
27 | Many of the methods (both Sparse and Full) cache values so that subsequent \ |
---|
28 | calls with the same arguments are faster. \ |
---|
29 | |
---|
30 | checksums md5 918f06cf7419d28c122b7222eaf10302 \ |
---|
31 | sha1 f4aad26964333fc8fc16d867dd054a3f503f13cf \ |
---|
32 | rmd160 185cddbc8ce8d97194e3d9b05cfc575b956c50a6 |
---|