File: README

package info (click to toggle)
statistics-descriptive 2.4-1
  • links: PTS
  • area: main
  • in suites: potato
  • size: 68 kB
  • ctags: 28
  • sloc: perl: 305; makefile: 43
file content (62 lines) | stat: -rw-r--r-- 1,666 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
This new version (2.4) of Statistics::Descriptive contains:

- Code to correctly calculate the percentile of the data as defined by
  RFC2330.  Also included is RFC2330 for general reference.

List of methods by class:

Statistics::Descriptive::Sparse
----------------------------------
add_data
count
mean
sum
variance
pseudo_variance
min
max
mindex
maxdex
standard_deviation
sample_range

Statistics::Descriptive::Full
----------------------------------
All methods above and:
get_data
sort_data
presorted
percentile
median
trimmed_mean
harmonic_mean
mode
geometric_mean
frequency_distribution
least_squares_fit

Ideas for ongoing development:

- re: Georg Fuellen
  A function to define the "maxima" of a distribution.  In other words,
  return an array that contains all data that falls within a given
  confidence interval.

- Move source to C and XS for speed improvements. (Interface to R or S?)

- Move to PDL for a unified math solution and maybe take advantage of
  their compact storage.

- Methods for covariance and correlation.

- An interface to Jon Orwant's Statistics::ChiSquare module to
  provide a method for determining how random data is (for a uniform
  distribution) or how well is fits another distribution (for
  non-uniform distributions like normal(gaussian), log-normal,
  rayleigh, etc).

  The major issue I'm concerned about is the updating of someone else's
  code and future extensibility.  Now, major paranoia should be obvious
  since Jon hasn't changed Statistics::ChiSquare for a long, long
  time.  Still, a wrapper module that inherits from several other
  modules is appealing.  Perhaps it will be called Statistics::Bundle.