File: control

package info (click to toggle)
ruby-enumerable-statistics 2.0.8%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,148 kB
  • sloc: ruby: 2,270; ansic: 2,031; javascript: 408; makefile: 8; sh: 4
file content (41 lines) | stat: -rw-r--r-- 1,836 bytes parent folder | download
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
Source: ruby-enumerable-statistics
Section: ruby
Priority: optional
Maintainer: Debian Ruby Team <pkg-ruby-extras-maintainers@lists.alioth.debian.org>
Uploaders: Pirate Praveen <praveen@debian.org>
Build-Depends: debhelper-compat (= 12),
               gem2deb (>= 1),
               ruby-rspec,
Standards-Version: 4.7.2
Vcs-Git: https://salsa.debian.org/ruby-team/ruby-enumerable-statistics.git
Vcs-Browser: https://salsa.debian.org/ruby-team/ruby-enumerable-statistics
Homepage: https://github.com/mrkn/enumerable-statistics
Testsuite: autopkgtest-pkg-ruby
Rules-Requires-Root: no

Package: ruby-enumerable-statistics
Architecture: any
Depends: ${misc:Depends},
         ${ruby:Depends},
         ${shlibs:Depends}
Description: Statistics features for Enumerable
 Enumerable::Statistics provides some methods to calculate statistical summary
 in arrays and enumerables.
 .
 The following methods are supplied by this library:
  - `Array#mean`, `Enumerable#mean` - Calculates a mean of values in an array
    or an enumerable
  - `Array#variance`, `Enumerable#variance` - Calculates a variance of values
    in an array or an enumerable
  - `Array#stdev`, `Enumerable#stdev` - Calculates a standard deviation of
    values in an array or an enumerable
  - `Array#mean_variance`, `Enumerable#mean_variance` - Calculates a mean and a
    variance simultaneously
  - `Array#mean_stdev`, `Enumerable#mean_stdev` - Calculates a mean and a
    standard deviation simultaneously
  - `Array#median` - Calculates a median of values in an array
  - `Array#percentile(q)` - Calculates a percentile or percentiles of values
    in an array
  - `Array#value_counts`, `Enumerable#value_counts`, and `Hash#value_counts` -
    Count how many items for each value in the container
  - `Array#histogram` - Calculate histogram of the values in the array