quantile_estimator 0.0.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +7 -0
- data/.ruby-gemset +1 -0
- data/.ruby-version +1 -0
- data/Gemfile +4 -0
- data/Gemfile.lock +17 -0
- data/LICENSE.txt +22 -0
- data/README.md +85 -0
- data/Rakefile +9 -0
- data/benchmark.rb +21 -0
- data/doc/Cursor.html +422 -0
- data/doc/Estimator.html +779 -0
- data/doc/Invariant.html +115 -0
- data/doc/Invariant/Biased.html +268 -0
- data/doc/Invariant/Invariant.html +193 -0
- data/doc/Invariant/SingleTarget.html +278 -0
- data/doc/Invariant/Targeted.html +278 -0
- data/doc/Item.html +620 -0
- data/doc/Quantile.html +270 -0
- data/doc/QuantileEstimator.html +117 -0
- data/doc/_index.html +211 -0
- data/doc/class_list.html +54 -0
- data/doc/compression.png +0 -0
- data/doc/css/common.css +1 -0
- data/doc/css/full_list.css +57 -0
- data/doc/css/style.css +338 -0
- data/doc/file.README.html +186 -0
- data/doc/file_list.html +56 -0
- data/doc/frames.html +26 -0
- data/doc/index.html +186 -0
- data/doc/js/app.js +219 -0
- data/doc/js/full_list.js +178 -0
- data/doc/js/jquery.js +4 -0
- data/doc/method_list.html +221 -0
- data/doc/time.png +0 -0
- data/doc/top-level-namespace.html +114 -0
- data/lib/estimator.rb +120 -0
- data/lib/quantile_estimator/cursor.rb +24 -0
- data/lib/quantile_estimator/invariant.rb +47 -0
- data/lib/quantile_estimator/item.rb +21 -0
- data/lib/quantile_estimator/quantile.rb +3 -0
- data/lib/quantile_estimator/test.rb +37 -0
- data/lib/quantile_estimator/version.rb +3 -0
- data/pkg/quantile_estimator-0.0.1.gem +0 -0
- data/quantile_estimator.gemspec +29 -0
- data/test/test_quantile_estimator.rb +85 -0
- metadata +120 -0
metadata
ADDED
|
@@ -0,0 +1,120 @@
|
|
|
1
|
+
--- !ruby/object:Gem::Specification
|
|
2
|
+
name: quantile_estimator
|
|
3
|
+
version: !ruby/object:Gem::Version
|
|
4
|
+
version: 0.0.2
|
|
5
|
+
platform: ruby
|
|
6
|
+
authors:
|
|
7
|
+
- Diego Echeverri
|
|
8
|
+
autorequire:
|
|
9
|
+
bindir: bin
|
|
10
|
+
cert_chain: []
|
|
11
|
+
date: 2013-11-15 00:00:00.000000000 Z
|
|
12
|
+
dependencies:
|
|
13
|
+
- !ruby/object:Gem::Dependency
|
|
14
|
+
name: bundler
|
|
15
|
+
requirement: !ruby/object:Gem::Requirement
|
|
16
|
+
requirements:
|
|
17
|
+
- - ~>
|
|
18
|
+
- !ruby/object:Gem::Version
|
|
19
|
+
version: '1.3'
|
|
20
|
+
type: :development
|
|
21
|
+
prerelease: false
|
|
22
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
23
|
+
requirements:
|
|
24
|
+
- - ~>
|
|
25
|
+
- !ruby/object:Gem::Version
|
|
26
|
+
version: '1.3'
|
|
27
|
+
- !ruby/object:Gem::Dependency
|
|
28
|
+
name: rake
|
|
29
|
+
requirement: !ruby/object:Gem::Requirement
|
|
30
|
+
requirements:
|
|
31
|
+
- - '>='
|
|
32
|
+
- !ruby/object:Gem::Version
|
|
33
|
+
version: '0'
|
|
34
|
+
type: :development
|
|
35
|
+
prerelease: false
|
|
36
|
+
version_requirements: !ruby/object:Gem::Requirement
|
|
37
|
+
requirements:
|
|
38
|
+
- - '>='
|
|
39
|
+
- !ruby/object:Gem::Version
|
|
40
|
+
version: '0'
|
|
41
|
+
description: "\n Implementation of quantile estimators based on.\n\n Cormode
|
|
42
|
+
et. al.: \"Effective Computation of Biased Quantiles over Data Streams\"\n "
|
|
43
|
+
email:
|
|
44
|
+
- diegoeche@gmail.com
|
|
45
|
+
executables: []
|
|
46
|
+
extensions: []
|
|
47
|
+
extra_rdoc_files: []
|
|
48
|
+
files:
|
|
49
|
+
- .ruby-gemset
|
|
50
|
+
- .ruby-version
|
|
51
|
+
- Gemfile
|
|
52
|
+
- Gemfile.lock
|
|
53
|
+
- LICENSE.txt
|
|
54
|
+
- README.md
|
|
55
|
+
- Rakefile
|
|
56
|
+
- benchmark.rb
|
|
57
|
+
- doc/Cursor.html
|
|
58
|
+
- doc/Estimator.html
|
|
59
|
+
- doc/Invariant.html
|
|
60
|
+
- doc/Invariant/Biased.html
|
|
61
|
+
- doc/Invariant/Invariant.html
|
|
62
|
+
- doc/Invariant/SingleTarget.html
|
|
63
|
+
- doc/Invariant/Targeted.html
|
|
64
|
+
- doc/Item.html
|
|
65
|
+
- doc/Quantile.html
|
|
66
|
+
- doc/QuantileEstimator.html
|
|
67
|
+
- doc/_index.html
|
|
68
|
+
- doc/class_list.html
|
|
69
|
+
- doc/compression.png
|
|
70
|
+
- doc/css/common.css
|
|
71
|
+
- doc/css/full_list.css
|
|
72
|
+
- doc/css/style.css
|
|
73
|
+
- doc/file.README.html
|
|
74
|
+
- doc/file_list.html
|
|
75
|
+
- doc/frames.html
|
|
76
|
+
- doc/index.html
|
|
77
|
+
- doc/js/app.js
|
|
78
|
+
- doc/js/full_list.js
|
|
79
|
+
- doc/js/jquery.js
|
|
80
|
+
- doc/method_list.html
|
|
81
|
+
- doc/time.png
|
|
82
|
+
- doc/top-level-namespace.html
|
|
83
|
+
- lib/estimator.rb
|
|
84
|
+
- lib/quantile_estimator/cursor.rb
|
|
85
|
+
- lib/quantile_estimator/invariant.rb
|
|
86
|
+
- lib/quantile_estimator/item.rb
|
|
87
|
+
- lib/quantile_estimator/quantile.rb
|
|
88
|
+
- lib/quantile_estimator/test.rb
|
|
89
|
+
- lib/quantile_estimator/version.rb
|
|
90
|
+
- pkg/quantile_estimator-0.0.1.gem
|
|
91
|
+
- quantile_estimator.gemspec
|
|
92
|
+
- test/test_quantile_estimator.rb
|
|
93
|
+
homepage: https://github.com/diegoeche/quantile_estimator.rb
|
|
94
|
+
licenses:
|
|
95
|
+
- MIT
|
|
96
|
+
metadata: {}
|
|
97
|
+
post_install_message:
|
|
98
|
+
rdoc_options: []
|
|
99
|
+
require_paths:
|
|
100
|
+
- lib
|
|
101
|
+
- lib/quantile_estimator
|
|
102
|
+
required_ruby_version: !ruby/object:Gem::Requirement
|
|
103
|
+
requirements:
|
|
104
|
+
- - '>='
|
|
105
|
+
- !ruby/object:Gem::Version
|
|
106
|
+
version: '0'
|
|
107
|
+
required_rubygems_version: !ruby/object:Gem::Requirement
|
|
108
|
+
requirements:
|
|
109
|
+
- - '>='
|
|
110
|
+
- !ruby/object:Gem::Version
|
|
111
|
+
version: '0'
|
|
112
|
+
requirements: []
|
|
113
|
+
rubyforge_project:
|
|
114
|
+
rubygems_version: 2.0.3
|
|
115
|
+
signing_key:
|
|
116
|
+
specification_version: 4
|
|
117
|
+
summary: This gem implements a simple quantile estimator using Ruby Arrays.
|
|
118
|
+
test_files:
|
|
119
|
+
- test/test_quantile_estimator.rb
|
|
120
|
+
has_rdoc:
|