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
data/doc/Quantile.html
ADDED
|
@@ -0,0 +1,270 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
6
|
+
<title>
|
|
7
|
+
Class: Quantile
|
|
8
|
+
|
|
9
|
+
— Documentation by YARD 0.8.7.3
|
|
10
|
+
|
|
11
|
+
</title>
|
|
12
|
+
|
|
13
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
|
|
14
|
+
|
|
15
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
|
|
16
|
+
|
|
17
|
+
<script type="text/javascript" charset="utf-8">
|
|
18
|
+
hasFrames = window.top.frames.main ? true : false;
|
|
19
|
+
relpath = '';
|
|
20
|
+
framesUrl = "frames.html#!" + escape(window.location.href);
|
|
21
|
+
</script>
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
|
25
|
+
|
|
26
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
</head>
|
|
30
|
+
<body>
|
|
31
|
+
<div id="header">
|
|
32
|
+
<div id="menu">
|
|
33
|
+
|
|
34
|
+
<a href="_index.html">Index (Q)</a> »
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
<span class="title">Quantile</span>
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
|
41
|
+
</div>
|
|
42
|
+
|
|
43
|
+
<div id="search">
|
|
44
|
+
|
|
45
|
+
<a class="full_list_link" id="class_list_link"
|
|
46
|
+
href="class_list.html">
|
|
47
|
+
Class List
|
|
48
|
+
</a>
|
|
49
|
+
|
|
50
|
+
<a class="full_list_link" id="method_list_link"
|
|
51
|
+
href="method_list.html">
|
|
52
|
+
Method List
|
|
53
|
+
</a>
|
|
54
|
+
|
|
55
|
+
<a class="full_list_link" id="file_list_link"
|
|
56
|
+
href="file_list.html">
|
|
57
|
+
File List
|
|
58
|
+
</a>
|
|
59
|
+
|
|
60
|
+
</div>
|
|
61
|
+
<div class="clear"></div>
|
|
62
|
+
</div>
|
|
63
|
+
|
|
64
|
+
<iframe id="search_frame"></iframe>
|
|
65
|
+
|
|
66
|
+
<div id="content"><h1>Class: Quantile
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
</h1>
|
|
71
|
+
|
|
72
|
+
<dl class="box">
|
|
73
|
+
|
|
74
|
+
<dt class="r1">Inherits:</dt>
|
|
75
|
+
<dd class="r1">
|
|
76
|
+
<span class="inheritName">Object</span>
|
|
77
|
+
|
|
78
|
+
<ul class="fullTree">
|
|
79
|
+
<li>Object</li>
|
|
80
|
+
|
|
81
|
+
<li class="next">Quantile</li>
|
|
82
|
+
|
|
83
|
+
</ul>
|
|
84
|
+
<a href="#" class="inheritanceTree">show all</a>
|
|
85
|
+
|
|
86
|
+
</dd>
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
|
|
90
|
+
|
|
91
|
+
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
|
|
96
|
+
<dt class="r2 last">Defined in:</dt>
|
|
97
|
+
<dd class="r2 last">lib/quantile_estimator/quantile.rb</dd>
|
|
98
|
+
|
|
99
|
+
</dl>
|
|
100
|
+
<div class="clear"></div>
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
<h2>Instance Attribute Summary <small>(<a href="#" class="summary_toggle">collapse</a>)</small></h2>
|
|
107
|
+
<ul class="summary">
|
|
108
|
+
|
|
109
|
+
<li class="public ">
|
|
110
|
+
<span class="summary_signature">
|
|
111
|
+
|
|
112
|
+
<a href="#error-instance_method" title="#error (instance method)">- (Object) <strong>error</strong> </a>
|
|
113
|
+
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
</span>
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
|
|
129
|
+
<span class="summary_desc"><div class='inline'>
|
|
130
|
+
<p>Returns the value of attribute error.</p>
|
|
131
|
+
</div></span>
|
|
132
|
+
|
|
133
|
+
</li>
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
<li class="public ">
|
|
137
|
+
<span class="summary_signature">
|
|
138
|
+
|
|
139
|
+
<a href="#quantile-instance_method" title="#quantile (instance method)">- (Object) <strong>quantile</strong> </a>
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
|
|
143
|
+
</span>
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
<span class="summary_desc"><div class='inline'>
|
|
157
|
+
<p>Returns the value of attribute quantile.</p>
|
|
158
|
+
</div></span>
|
|
159
|
+
|
|
160
|
+
</li>
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
</ul>
|
|
164
|
+
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
|
|
169
|
+
<div id="instance_attr_details" class="attr_details">
|
|
170
|
+
<h2>Instance Attribute Details</h2>
|
|
171
|
+
|
|
172
|
+
|
|
173
|
+
<span id="error=-instance_method"></span>
|
|
174
|
+
<div class="method_details first">
|
|
175
|
+
<h3 class="signature first" id="error-instance_method">
|
|
176
|
+
|
|
177
|
+
- (<tt>Object</tt>) <strong>error</strong>
|
|
178
|
+
|
|
179
|
+
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
</h3><div class="docstring">
|
|
184
|
+
<div class="discussion">
|
|
185
|
+
|
|
186
|
+
<p>Returns the value of attribute error</p>
|
|
187
|
+
|
|
188
|
+
|
|
189
|
+
</div>
|
|
190
|
+
</div>
|
|
191
|
+
<div class="tags">
|
|
192
|
+
|
|
193
|
+
|
|
194
|
+
</div><table class="source_code">
|
|
195
|
+
<tr>
|
|
196
|
+
<td>
|
|
197
|
+
<pre class="lines">
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
2
|
|
201
|
+
3
|
|
202
|
+
4</pre>
|
|
203
|
+
</td>
|
|
204
|
+
<td>
|
|
205
|
+
<pre class="code"><span class="info file"># File 'lib/quantile_estimator/quantile.rb', line 2</span>
|
|
206
|
+
|
|
207
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_error'>error</span>
|
|
208
|
+
<span class='ivar'>@error</span>
|
|
209
|
+
<span class='kw'>end</span></pre>
|
|
210
|
+
</td>
|
|
211
|
+
</tr>
|
|
212
|
+
</table>
|
|
213
|
+
</div>
|
|
214
|
+
|
|
215
|
+
|
|
216
|
+
<span id="quantile=-instance_method"></span>
|
|
217
|
+
<div class="method_details ">
|
|
218
|
+
<h3 class="signature " id="quantile-instance_method">
|
|
219
|
+
|
|
220
|
+
- (<tt>Object</tt>) <strong>quantile</strong>
|
|
221
|
+
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
</h3><div class="docstring">
|
|
227
|
+
<div class="discussion">
|
|
228
|
+
|
|
229
|
+
<p>Returns the value of attribute quantile</p>
|
|
230
|
+
|
|
231
|
+
|
|
232
|
+
</div>
|
|
233
|
+
</div>
|
|
234
|
+
<div class="tags">
|
|
235
|
+
|
|
236
|
+
|
|
237
|
+
</div><table class="source_code">
|
|
238
|
+
<tr>
|
|
239
|
+
<td>
|
|
240
|
+
<pre class="lines">
|
|
241
|
+
|
|
242
|
+
|
|
243
|
+
2
|
|
244
|
+
3
|
|
245
|
+
4</pre>
|
|
246
|
+
</td>
|
|
247
|
+
<td>
|
|
248
|
+
<pre class="code"><span class="info file"># File 'lib/quantile_estimator/quantile.rb', line 2</span>
|
|
249
|
+
|
|
250
|
+
<span class='kw'>def</span> <span class='id identifier rubyid_quantile'>quantile</span>
|
|
251
|
+
<span class='ivar'>@quantile</span>
|
|
252
|
+
<span class='kw'>end</span></pre>
|
|
253
|
+
</td>
|
|
254
|
+
</tr>
|
|
255
|
+
</table>
|
|
256
|
+
</div>
|
|
257
|
+
|
|
258
|
+
</div>
|
|
259
|
+
|
|
260
|
+
|
|
261
|
+
</div>
|
|
262
|
+
|
|
263
|
+
<div id="footer">
|
|
264
|
+
Generated on Fri Nov 15 15:39:43 2013 by
|
|
265
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
266
|
+
0.8.7.3 (ruby-2.0.0).
|
|
267
|
+
</div>
|
|
268
|
+
|
|
269
|
+
</body>
|
|
270
|
+
</html>
|
|
@@ -0,0 +1,117 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
6
|
+
<title>
|
|
7
|
+
Module: QuantileEstimator
|
|
8
|
+
|
|
9
|
+
— Documentation by YARD 0.8.7.3
|
|
10
|
+
|
|
11
|
+
</title>
|
|
12
|
+
|
|
13
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
|
|
14
|
+
|
|
15
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
|
|
16
|
+
|
|
17
|
+
<script type="text/javascript" charset="utf-8">
|
|
18
|
+
hasFrames = window.top.frames.main ? true : false;
|
|
19
|
+
relpath = '';
|
|
20
|
+
framesUrl = "frames.html#!" + escape(window.location.href);
|
|
21
|
+
</script>
|
|
22
|
+
|
|
23
|
+
|
|
24
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
|
25
|
+
|
|
26
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
|
27
|
+
|
|
28
|
+
|
|
29
|
+
</head>
|
|
30
|
+
<body>
|
|
31
|
+
<div id="header">
|
|
32
|
+
<div id="menu">
|
|
33
|
+
|
|
34
|
+
<a href="_index.html">Index (Q)</a> »
|
|
35
|
+
|
|
36
|
+
|
|
37
|
+
<span class="title">QuantileEstimator</span>
|
|
38
|
+
|
|
39
|
+
|
|
40
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
|
41
|
+
</div>
|
|
42
|
+
|
|
43
|
+
<div id="search">
|
|
44
|
+
|
|
45
|
+
<a class="full_list_link" id="class_list_link"
|
|
46
|
+
href="class_list.html">
|
|
47
|
+
Class List
|
|
48
|
+
</a>
|
|
49
|
+
|
|
50
|
+
<a class="full_list_link" id="method_list_link"
|
|
51
|
+
href="method_list.html">
|
|
52
|
+
Method List
|
|
53
|
+
</a>
|
|
54
|
+
|
|
55
|
+
<a class="full_list_link" id="file_list_link"
|
|
56
|
+
href="file_list.html">
|
|
57
|
+
File List
|
|
58
|
+
</a>
|
|
59
|
+
|
|
60
|
+
</div>
|
|
61
|
+
<div class="clear"></div>
|
|
62
|
+
</div>
|
|
63
|
+
|
|
64
|
+
<iframe id="search_frame"></iframe>
|
|
65
|
+
|
|
66
|
+
<div id="content"><h1>Module: QuantileEstimator
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
</h1>
|
|
71
|
+
|
|
72
|
+
<dl class="box">
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
<dt class="r1 last">Defined in:</dt>
|
|
82
|
+
<dd class="r1 last">lib/quantile_estimator/version.rb</dd>
|
|
83
|
+
|
|
84
|
+
</dl>
|
|
85
|
+
<div class="clear"></div>
|
|
86
|
+
|
|
87
|
+
|
|
88
|
+
<h2>Constant Summary</h2>
|
|
89
|
+
|
|
90
|
+
<dl class="constants">
|
|
91
|
+
|
|
92
|
+
<dt id="VERSION-constant" class="">VERSION =
|
|
93
|
+
|
|
94
|
+
</dt>
|
|
95
|
+
<dd><pre class="code"><span class='tstring'><span class='tstring_beg'>"</span><span class='tstring_content'>0.0.1</span><span class='tstring_end'>"</span></span></pre></dd>
|
|
96
|
+
|
|
97
|
+
</dl>
|
|
98
|
+
|
|
99
|
+
|
|
100
|
+
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
</div>
|
|
109
|
+
|
|
110
|
+
<div id="footer">
|
|
111
|
+
Generated on Fri Nov 15 15:39:43 2013 by
|
|
112
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
113
|
+
0.8.7.3 (ruby-2.0.0).
|
|
114
|
+
</div>
|
|
115
|
+
|
|
116
|
+
</body>
|
|
117
|
+
</html>
|
data/doc/_index.html
ADDED
|
@@ -0,0 +1,211 @@
|
|
|
1
|
+
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
|
2
|
+
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
|
3
|
+
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en">
|
|
4
|
+
<head>
|
|
5
|
+
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
|
|
6
|
+
<title>
|
|
7
|
+
Documentation by YARD 0.8.7.3
|
|
8
|
+
|
|
9
|
+
</title>
|
|
10
|
+
|
|
11
|
+
<link rel="stylesheet" href="css/style.css" type="text/css" charset="utf-8" />
|
|
12
|
+
|
|
13
|
+
<link rel="stylesheet" href="css/common.css" type="text/css" charset="utf-8" />
|
|
14
|
+
|
|
15
|
+
<script type="text/javascript" charset="utf-8">
|
|
16
|
+
hasFrames = window.top.frames.main ? true : false;
|
|
17
|
+
relpath = '';
|
|
18
|
+
framesUrl = "frames.html#!" + escape(window.location.href);
|
|
19
|
+
</script>
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
<script type="text/javascript" charset="utf-8" src="js/jquery.js"></script>
|
|
23
|
+
|
|
24
|
+
<script type="text/javascript" charset="utf-8" src="js/app.js"></script>
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
</head>
|
|
28
|
+
<body>
|
|
29
|
+
<div id="header">
|
|
30
|
+
<div id="menu">
|
|
31
|
+
|
|
32
|
+
|
|
33
|
+
<div class="noframes"><span class="title">(</span><a href="." target="_top">no frames</a><span class="title">)</span></div>
|
|
34
|
+
</div>
|
|
35
|
+
|
|
36
|
+
<div id="search">
|
|
37
|
+
|
|
38
|
+
<a class="full_list_link" id="class_list_link"
|
|
39
|
+
href="class_list.html">
|
|
40
|
+
Class List
|
|
41
|
+
</a>
|
|
42
|
+
|
|
43
|
+
<a class="full_list_link" id="method_list_link"
|
|
44
|
+
href="method_list.html">
|
|
45
|
+
Method List
|
|
46
|
+
</a>
|
|
47
|
+
|
|
48
|
+
<a class="full_list_link" id="file_list_link"
|
|
49
|
+
href="file_list.html">
|
|
50
|
+
File List
|
|
51
|
+
</a>
|
|
52
|
+
|
|
53
|
+
</div>
|
|
54
|
+
<div class="clear"></div>
|
|
55
|
+
</div>
|
|
56
|
+
|
|
57
|
+
<iframe id="search_frame"></iframe>
|
|
58
|
+
|
|
59
|
+
<div id="content"><h1 class="noborder title">Documentation by YARD 0.8.7.3</h1>
|
|
60
|
+
<div id="listing">
|
|
61
|
+
<h1 class="alphaindex">Alphabetic Index</h1>
|
|
62
|
+
|
|
63
|
+
<h2>File Listing</h2>
|
|
64
|
+
<ul id="files" class="index_inline_list">
|
|
65
|
+
|
|
66
|
+
|
|
67
|
+
<li class="r1"><a href="index.html" title="README">README</a></li>
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
</ul>
|
|
71
|
+
|
|
72
|
+
<div class="clear"></div>
|
|
73
|
+
<h2>Namespace Listing A-Z</h2>
|
|
74
|
+
|
|
75
|
+
|
|
76
|
+
|
|
77
|
+
|
|
78
|
+
<table>
|
|
79
|
+
<tr>
|
|
80
|
+
<td valign='top' width="33%">
|
|
81
|
+
|
|
82
|
+
|
|
83
|
+
<ul id="alpha_B" class="alpha">
|
|
84
|
+
<li class="letter">B</li>
|
|
85
|
+
<ul>
|
|
86
|
+
|
|
87
|
+
<li>
|
|
88
|
+
<span class='object_link'><a href="Invariant/Biased.html" title="Invariant::Biased (class)">Biased</a></span>
|
|
89
|
+
|
|
90
|
+
<small>(Invariant)</small>
|
|
91
|
+
|
|
92
|
+
</li>
|
|
93
|
+
|
|
94
|
+
</ul>
|
|
95
|
+
</ul>
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
<ul id="alpha_C" class="alpha">
|
|
99
|
+
<li class="letter">C</li>
|
|
100
|
+
<ul>
|
|
101
|
+
|
|
102
|
+
<li>
|
|
103
|
+
<span class='object_link'><a href="Cursor.html" title="Cursor (class)">Cursor</a></span>
|
|
104
|
+
|
|
105
|
+
</li>
|
|
106
|
+
|
|
107
|
+
</ul>
|
|
108
|
+
</ul>
|
|
109
|
+
|
|
110
|
+
|
|
111
|
+
<ul id="alpha_E" class="alpha">
|
|
112
|
+
<li class="letter">E</li>
|
|
113
|
+
<ul>
|
|
114
|
+
|
|
115
|
+
<li>
|
|
116
|
+
<span class='object_link'><a href="Estimator.html" title="Estimator (class)">Estimator</a></span>
|
|
117
|
+
|
|
118
|
+
</li>
|
|
119
|
+
|
|
120
|
+
</ul>
|
|
121
|
+
</ul>
|
|
122
|
+
|
|
123
|
+
|
|
124
|
+
<ul id="alpha_I" class="alpha">
|
|
125
|
+
<li class="letter">I</li>
|
|
126
|
+
<ul>
|
|
127
|
+
|
|
128
|
+
<li>
|
|
129
|
+
<span class='object_link'><a href="Invariant.html" title="Invariant (module)">Invariant</a></span>
|
|
130
|
+
|
|
131
|
+
</li>
|
|
132
|
+
|
|
133
|
+
<li>
|
|
134
|
+
<span class='object_link'><a href="Invariant/Invariant.html" title="Invariant::Invariant (class)">Invariant</a></span>
|
|
135
|
+
|
|
136
|
+
<small>(Invariant)</small>
|
|
137
|
+
|
|
138
|
+
</li>
|
|
139
|
+
|
|
140
|
+
<li>
|
|
141
|
+
<span class='object_link'><a href="Item.html" title="Item (class)">Item</a></span>
|
|
142
|
+
|
|
143
|
+
</li>
|
|
144
|
+
|
|
145
|
+
</ul>
|
|
146
|
+
</ul>
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
<ul id="alpha_Q" class="alpha">
|
|
150
|
+
<li class="letter">Q</li>
|
|
151
|
+
<ul>
|
|
152
|
+
|
|
153
|
+
<li>
|
|
154
|
+
<span class='object_link'><a href="Quantile.html" title="Quantile (class)">Quantile</a></span>
|
|
155
|
+
|
|
156
|
+
</li>
|
|
157
|
+
|
|
158
|
+
<li>
|
|
159
|
+
<span class='object_link'><a href="QuantileEstimator.html" title="QuantileEstimator (module)">QuantileEstimator</a></span>
|
|
160
|
+
|
|
161
|
+
</li>
|
|
162
|
+
|
|
163
|
+
</ul>
|
|
164
|
+
</ul>
|
|
165
|
+
|
|
166
|
+
|
|
167
|
+
<ul id="alpha_S" class="alpha">
|
|
168
|
+
<li class="letter">S</li>
|
|
169
|
+
<ul>
|
|
170
|
+
|
|
171
|
+
<li>
|
|
172
|
+
<span class='object_link'><a href="Invariant/SingleTarget.html" title="Invariant::SingleTarget (class)">SingleTarget</a></span>
|
|
173
|
+
|
|
174
|
+
<small>(Invariant)</small>
|
|
175
|
+
|
|
176
|
+
</li>
|
|
177
|
+
|
|
178
|
+
</ul>
|
|
179
|
+
</ul>
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
<ul id="alpha_T" class="alpha">
|
|
183
|
+
<li class="letter">T</li>
|
|
184
|
+
<ul>
|
|
185
|
+
|
|
186
|
+
<li>
|
|
187
|
+
<span class='object_link'><a href="Invariant/Targeted.html" title="Invariant::Targeted (class)">Targeted</a></span>
|
|
188
|
+
|
|
189
|
+
<small>(Invariant)</small>
|
|
190
|
+
|
|
191
|
+
</li>
|
|
192
|
+
|
|
193
|
+
</ul>
|
|
194
|
+
</ul>
|
|
195
|
+
|
|
196
|
+
</td>
|
|
197
|
+
</tr>
|
|
198
|
+
</table>
|
|
199
|
+
|
|
200
|
+
</div>
|
|
201
|
+
|
|
202
|
+
</div>
|
|
203
|
+
|
|
204
|
+
<div id="footer">
|
|
205
|
+
Generated on Fri Nov 15 15:39:41 2013 by
|
|
206
|
+
<a href="http://yardoc.org" title="Yay! A Ruby Documentation Tool" target="_parent">yard</a>
|
|
207
|
+
0.8.7.3 (ruby-2.0.0).
|
|
208
|
+
</div>
|
|
209
|
+
|
|
210
|
+
</body>
|
|
211
|
+
</html>
|