@stdlib/stats-base-dists-f 0.0.7 → 0.2.0
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.
- package/NOTICE +1 -1
- package/README.md +18 -4
- package/SECURITY.md +5 -0
- package/dist/index.d.ts +3 -0
- package/dist/index.js +3 -0
- package/dist/index.js.map +7 -0
- package/docs/types/index.d.ts +2 -3
- package/package.json +52 -51
- package/docs/types/test.ts +0 -29
package/NOTICE
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
Copyright (c) 2016-
|
|
1
|
+
Copyright (c) 2016-2024 The Stdlib Authors.
|
package/README.md
CHANGED
|
@@ -18,6 +18,17 @@ limitations under the License.
|
|
|
18
18
|
|
|
19
19
|
-->
|
|
20
20
|
|
|
21
|
+
|
|
22
|
+
<details>
|
|
23
|
+
<summary>
|
|
24
|
+
About stdlib...
|
|
25
|
+
</summary>
|
|
26
|
+
<p>We believe in a future in which the web is a preferred environment for numerical computation. To help realize this future, we've built stdlib. stdlib is a standard library, with an emphasis on numerical and scientific computation, written in JavaScript (and C) for execution in browsers and in Node.js.</p>
|
|
27
|
+
<p>The library is fully decomposable, being architected in such a way that you can swap out and mix and match APIs and functionality to cater to your exact preferences and use cases.</p>
|
|
28
|
+
<p>When you use stdlib, you can be absolutely certain that you are using the most thorough, rigorous, well-written, studied, documented, tested, measured, and high-quality code out there.</p>
|
|
29
|
+
<p>To join us in bringing numerical computing to the web, get started by checking us out on <a href="https://github.com/stdlib-js/stdlib">GitHub</a>, and please consider <a href="https://opencollective.com/stdlib">financially supporting stdlib</a>. We greatly appreciate your continued support!</p>
|
|
30
|
+
</details>
|
|
31
|
+
|
|
21
32
|
# Fisher's F
|
|
22
33
|
|
|
23
34
|
[![NPM version][npm-image]][npm-url] [![Build Status][test-image]][test-url] [![Coverage Status][coverage-image]][coverage-url] <!-- [![dependencies][dependencies-image]][dependencies-url] -->
|
|
@@ -161,7 +172,7 @@ See [LICENSE][stdlib-license].
|
|
|
161
172
|
|
|
162
173
|
## Copyright
|
|
163
174
|
|
|
164
|
-
Copyright © 2016-
|
|
175
|
+
Copyright © 2016-2024. The Stdlib [Authors][stdlib-authors].
|
|
165
176
|
|
|
166
177
|
</section>
|
|
167
178
|
|
|
@@ -174,8 +185,8 @@ Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
|
174
185
|
[npm-image]: http://img.shields.io/npm/v/@stdlib/stats-base-dists-f.svg
|
|
175
186
|
[npm-url]: https://npmjs.org/package/@stdlib/stats-base-dists-f
|
|
176
187
|
|
|
177
|
-
[test-image]: https://github.com/stdlib-js/stats-base-dists-f/actions/workflows/test.yml/badge.svg?branch=v0.0
|
|
178
|
-
[test-url]: https://github.com/stdlib-js/stats-base-dists-f/actions/workflows/test.yml?query=branch:v0.0
|
|
188
|
+
[test-image]: https://github.com/stdlib-js/stats-base-dists-f/actions/workflows/test.yml/badge.svg?branch=v0.2.0
|
|
189
|
+
[test-url]: https://github.com/stdlib-js/stats-base-dists-f/actions/workflows/test.yml?query=branch:v0.2.0
|
|
179
190
|
|
|
180
191
|
[coverage-image]: https://img.shields.io/codecov/c/github/stdlib-js/stats-base-dists-f/main.svg
|
|
181
192
|
[coverage-url]: https://codecov.io/github/stdlib-js/stats-base-dists-f?branch=main
|
|
@@ -188,7 +199,7 @@ Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
|
188
199
|
-->
|
|
189
200
|
|
|
190
201
|
[chat-image]: https://img.shields.io/gitter/room/stdlib-js/stdlib.svg
|
|
191
|
-
[chat-url]: https://gitter.im
|
|
202
|
+
[chat-url]: https://app.gitter.im/#/room/#stdlib-js_stdlib:gitter.im
|
|
192
203
|
|
|
193
204
|
[stdlib]: https://github.com/stdlib-js/stdlib
|
|
194
205
|
|
|
@@ -198,8 +209,11 @@ Copyright © 2016-2022. The Stdlib [Authors][stdlib-authors].
|
|
|
198
209
|
[es-module]: https://developer.mozilla.org/en-US/docs/Web/JavaScript/Guide/Modules
|
|
199
210
|
|
|
200
211
|
[deno-url]: https://github.com/stdlib-js/stats-base-dists-f/tree/deno
|
|
212
|
+
[deno-readme]: https://github.com/stdlib-js/stats-base-dists-f/blob/deno/README.md
|
|
201
213
|
[umd-url]: https://github.com/stdlib-js/stats-base-dists-f/tree/umd
|
|
214
|
+
[umd-readme]: https://github.com/stdlib-js/stats-base-dists-f/blob/umd/README.md
|
|
202
215
|
[esm-url]: https://github.com/stdlib-js/stats-base-dists-f/tree/esm
|
|
216
|
+
[esm-readme]: https://github.com/stdlib-js/stats-base-dists-f/blob/esm/README.md
|
|
203
217
|
[branches-url]: https://github.com/stdlib-js/stats-base-dists-f/blob/main/branches.md
|
|
204
218
|
|
|
205
219
|
[stdlib-license]: https://raw.githubusercontent.com/stdlib-js/stats-base-dists-f/main/LICENSE
|
package/SECURITY.md
ADDED
package/dist/index.d.ts
ADDED
package/dist/index.js
ADDED
|
@@ -0,0 +1,3 @@
|
|
|
1
|
+
"use strict";var r=require('@stdlib/utils-define-read-only-property/dist'),e={};r(e,"cdf",require('@stdlib/stats-base-dists-f-cdf/dist'));r(e,"F",require('@stdlib/stats-base-dists-f-ctor/dist'));r(e,"entropy",require('@stdlib/stats-base-dists-f-entropy/dist'));r(e,"kurtosis",require('@stdlib/stats-base-dists-f-kurtosis/dist'));r(e,"mean",require('@stdlib/stats-base-dists-f-mean/dist'));r(e,"mode",require('@stdlib/stats-base-dists-f-mode/dist'));r(e,"pdf",require('@stdlib/stats-base-dists-f-pdf/dist'));r(e,"quantile",require('@stdlib/stats-base-dists-f-quantile/dist'));r(e,"skewness",require('@stdlib/stats-base-dists-f-skewness/dist'));r(e,"stdev",require('@stdlib/stats-base-dists-f-stdev/dist'));r(e,"variance",require('@stdlib/stats-base-dists-f-variance/dist'));module.exports=e;
|
|
2
|
+
/** @license Apache-2.0 */
|
|
3
|
+
//# sourceMappingURL=index.js.map
|
|
@@ -0,0 +1,7 @@
|
|
|
1
|
+
{
|
|
2
|
+
"version": 3,
|
|
3
|
+
"sources": ["../lib/index.js"],
|
|
4
|
+
"sourcesContent": ["/**\n* @license Apache-2.0\n*\n* Copyright (c) 2018 The Stdlib Authors.\n*\n* Licensed under the Apache License, Version 2.0 (the \"License\");\n* you may not use this file except in compliance with the License.\n* You may obtain a copy of the License at\n*\n* http://www.apache.org/licenses/LICENSE-2.0\n*\n* Unless required by applicable law or agreed to in writing, software\n* distributed under the License is distributed on an \"AS IS\" BASIS,\n* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\n* See the License for the specific language governing permissions and\n* limitations under the License.\n*/\n\n'use strict';\n\n/*\n* When adding modules to the namespace, ensure that they are added in alphabetical order according to module name.\n*/\n\n// MODULES //\n\nvar setReadOnly = require( '@stdlib/utils-define-read-only-property' );\n\n\n// MAIN //\n\n/**\n* Top-level namespace.\n*\n* @namespace f\n*/\nvar f = {};\n\n/**\n* @name cdf\n* @memberof f\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/base/dists/f/cdf}\n*/\nsetReadOnly( f, 'cdf', require( '@stdlib/stats-base-dists-f-cdf' ) );\n\n/**\n* @name F\n* @memberof f\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/base/dists/f/ctor}\n*/\nsetReadOnly( f, 'F', require( '@stdlib/stats-base-dists-f-ctor' ) );\n\n/**\n* @name entropy\n* @memberof f\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/base/dists/f/entropy}\n*/\nsetReadOnly( f, 'entropy', require( '@stdlib/stats-base-dists-f-entropy' ) );\n\n/**\n* @name kurtosis\n* @memberof f\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/base/dists/f/kurtosis}\n*/\nsetReadOnly( f, 'kurtosis', require( '@stdlib/stats-base-dists-f-kurtosis' ) );\n\n/**\n* @name mean\n* @memberof f\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/base/dists/f/mean}\n*/\nsetReadOnly( f, 'mean', require( '@stdlib/stats-base-dists-f-mean' ) );\n\n/**\n* @name mode\n* @memberof f\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/base/dists/f/mode}\n*/\nsetReadOnly( f, 'mode', require( '@stdlib/stats-base-dists-f-mode' ) );\n\n/**\n* @name pdf\n* @memberof f\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/base/dists/f/pdf}\n*/\nsetReadOnly( f, 'pdf', require( '@stdlib/stats-base-dists-f-pdf' ) );\n\n/**\n* @name quantile\n* @memberof f\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/base/dists/f/quantile}\n*/\nsetReadOnly( f, 'quantile', require( '@stdlib/stats-base-dists-f-quantile' ) );\n\n/**\n* @name skewness\n* @memberof f\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/base/dists/f/skewness}\n*/\nsetReadOnly( f, 'skewness', require( '@stdlib/stats-base-dists-f-skewness' ) );\n\n/**\n* @name stdev\n* @memberof f\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/base/dists/f/stdev}\n*/\nsetReadOnly( f, 'stdev', require( '@stdlib/stats-base-dists-f-stdev' ) );\n\n/**\n* @name variance\n* @memberof f\n* @readonly\n* @type {Function}\n* @see {@link module:@stdlib/stats/base/dists/f/variance}\n*/\nsetReadOnly( f, 'variance', require( '@stdlib/stats-base-dists-f-variance' ) );\n\n\n// EXPORTS //\n\nmodule.exports = f;\n"],
|
|
5
|
+
"mappings": "aA0BA,IAAIA,EAAc,QAAS,yCAA0C,EAUjEC,EAAI,CAAC,EASTD,EAAaC,EAAG,MAAO,QAAS,gCAAiC,CAAE,EASnED,EAAaC,EAAG,IAAK,QAAS,iCAAkC,CAAE,EASlED,EAAaC,EAAG,UAAW,QAAS,oCAAqC,CAAE,EAS3ED,EAAaC,EAAG,WAAY,QAAS,qCAAsC,CAAE,EAS7ED,EAAaC,EAAG,OAAQ,QAAS,iCAAkC,CAAE,EASrED,EAAaC,EAAG,OAAQ,QAAS,iCAAkC,CAAE,EASrED,EAAaC,EAAG,MAAO,QAAS,gCAAiC,CAAE,EASnED,EAAaC,EAAG,WAAY,QAAS,qCAAsC,CAAE,EAS7ED,EAAaC,EAAG,WAAY,QAAS,qCAAsC,CAAE,EAS7ED,EAAaC,EAAG,QAAS,QAAS,kCAAmC,CAAE,EASvED,EAAaC,EAAG,WAAY,QAAS,qCAAsC,CAAE,EAK7E,OAAO,QAAUA",
|
|
6
|
+
"names": ["setReadOnly", "f"]
|
|
7
|
+
}
|
package/docs/types/index.d.ts
CHANGED
|
@@ -16,10 +16,9 @@
|
|
|
16
16
|
* limitations under the License.
|
|
17
17
|
*/
|
|
18
18
|
|
|
19
|
-
// TypeScript Version:
|
|
19
|
+
// TypeScript Version: 4.1
|
|
20
20
|
|
|
21
|
-
/*
|
|
22
|
-
/* tslint:disable:max-file-line-count */
|
|
21
|
+
/* eslint-disable max-lines */
|
|
23
22
|
|
|
24
23
|
import cdf = require( '@stdlib/stats-base-dists-f-cdf' );
|
|
25
24
|
import F = require( '@stdlib/stats-base-dists-f-ctor' );
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@stdlib/stats-base-dists-f",
|
|
3
|
-
"version": "0.0
|
|
3
|
+
"version": "0.2.0",
|
|
4
4
|
"description": "Fisher's F distribution.",
|
|
5
5
|
"license": "Apache-2.0",
|
|
6
6
|
"author": {
|
|
@@ -36,58 +36,59 @@
|
|
|
36
36
|
"url": "https://github.com/stdlib-js/stdlib/issues"
|
|
37
37
|
},
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@stdlib/stats-base-dists-f-cdf": "^0.0
|
|
40
|
-
"@stdlib/stats-base-dists-f-ctor": "^0.0
|
|
41
|
-
"@stdlib/stats-base-dists-f-entropy": "^0.0
|
|
42
|
-
"@stdlib/stats-base-dists-f-kurtosis": "^0.0
|
|
43
|
-
"@stdlib/stats-base-dists-f-mean": "^0.0
|
|
44
|
-
"@stdlib/stats-base-dists-f-mode": "^0.0
|
|
45
|
-
"@stdlib/stats-base-dists-f-pdf": "^0.0
|
|
46
|
-
"@stdlib/stats-base-dists-f-quantile": "^0.0
|
|
47
|
-
"@stdlib/stats-base-dists-f-skewness": "^0.0
|
|
48
|
-
"@stdlib/stats-base-dists-f-stdev": "^0.0
|
|
49
|
-
"@stdlib/stats-base-dists-f-variance": "^0.0
|
|
50
|
-
"@stdlib/utils-define-read-only-property": "^0.0
|
|
39
|
+
"@stdlib/stats-base-dists-f-cdf": "^0.2.0",
|
|
40
|
+
"@stdlib/stats-base-dists-f-ctor": "^0.2.0",
|
|
41
|
+
"@stdlib/stats-base-dists-f-entropy": "^0.2.0",
|
|
42
|
+
"@stdlib/stats-base-dists-f-kurtosis": "^0.2.0",
|
|
43
|
+
"@stdlib/stats-base-dists-f-mean": "^0.2.0",
|
|
44
|
+
"@stdlib/stats-base-dists-f-mode": "^0.2.0",
|
|
45
|
+
"@stdlib/stats-base-dists-f-pdf": "^0.2.0",
|
|
46
|
+
"@stdlib/stats-base-dists-f-quantile": "^0.2.0",
|
|
47
|
+
"@stdlib/stats-base-dists-f-skewness": "^0.2.0",
|
|
48
|
+
"@stdlib/stats-base-dists-f-stdev": "^0.2.0",
|
|
49
|
+
"@stdlib/stats-base-dists-f-variance": "^0.2.0",
|
|
50
|
+
"@stdlib/utils-define-read-only-property": "^0.2.0"
|
|
51
51
|
},
|
|
52
52
|
"devDependencies": {
|
|
53
|
-
"@stdlib/assert-has-own-property": "^0.0
|
|
54
|
-
"@stdlib/assert-is-function": "^0.0
|
|
55
|
-
"@stdlib/assert-is-positive-number": "^0.0
|
|
56
|
-
"@stdlib/
|
|
57
|
-
"@stdlib/constants-float64-
|
|
58
|
-
"@stdlib/constants-float64-
|
|
59
|
-
"@stdlib/constants-float64-
|
|
60
|
-
"@stdlib/constants-float64-
|
|
61
|
-
"@stdlib/constants-float64-
|
|
62
|
-
"@stdlib/constants-float64-
|
|
63
|
-
"@stdlib/constants-float64-
|
|
64
|
-
"@stdlib/
|
|
65
|
-
"@stdlib/math-base-
|
|
66
|
-
"@stdlib/math-base-special-
|
|
67
|
-
"@stdlib/math-base-special-
|
|
68
|
-
"@stdlib/math-base-special-
|
|
69
|
-
"@stdlib/math-base-special-
|
|
70
|
-
"@stdlib/math-base-special-
|
|
71
|
-
"@stdlib/math-base-special-
|
|
72
|
-
"@stdlib/math-base-special-
|
|
73
|
-
"@stdlib/math-base-special-
|
|
74
|
-
"@stdlib/math-base-special-
|
|
75
|
-
"@stdlib/math-base-special-
|
|
76
|
-
"@stdlib/math-base-special-
|
|
77
|
-
"@stdlib/math-base-special-
|
|
78
|
-
"@stdlib/math-base-special-
|
|
79
|
-
"@stdlib/math-base-special-
|
|
80
|
-
"@stdlib/
|
|
81
|
-
"@stdlib/
|
|
82
|
-
"@stdlib/
|
|
83
|
-
"@stdlib/utils-
|
|
84
|
-
"@stdlib/utils-define-nonenumerable-read-only-
|
|
85
|
-
"@stdlib/utils-define-
|
|
86
|
-
"@stdlib/utils-
|
|
87
|
-
"@stdlib/utils-keys": "^0.0.x",
|
|
53
|
+
"@stdlib/assert-has-own-property": "^0.2.0",
|
|
54
|
+
"@stdlib/assert-is-function": "^0.2.0",
|
|
55
|
+
"@stdlib/assert-is-positive-number": "^0.2.0",
|
|
56
|
+
"@stdlib/constants-float64-e": "^0.2.0",
|
|
57
|
+
"@stdlib/constants-float64-eps": "^0.2.0",
|
|
58
|
+
"@stdlib/constants-float64-gamma-lanczos-g": "^0.2.0",
|
|
59
|
+
"@stdlib/constants-float64-max-ln": "^0.2.0",
|
|
60
|
+
"@stdlib/constants-float64-min-ln": "^0.2.0",
|
|
61
|
+
"@stdlib/constants-float64-ninf": "^0.2.0",
|
|
62
|
+
"@stdlib/constants-float64-pinf": "^0.2.0",
|
|
63
|
+
"@stdlib/constants-float64-sqrt-two": "^0.2.0",
|
|
64
|
+
"@stdlib/math-base-assert-is-nan": "^0.2.0",
|
|
65
|
+
"@stdlib/math-base-special-abs": "^0.2.0",
|
|
66
|
+
"@stdlib/math-base-special-betainc": "^0.2.0",
|
|
67
|
+
"@stdlib/math-base-special-ceil": "^0.2.0",
|
|
68
|
+
"@stdlib/math-base-special-digamma": "^0.2.0",
|
|
69
|
+
"@stdlib/math-base-special-exp": "^0.2.0",
|
|
70
|
+
"@stdlib/math-base-special-expm1": "^0.2.0",
|
|
71
|
+
"@stdlib/math-base-special-gamma-lanczos-sum-expg-scaled": "^0.2.0",
|
|
72
|
+
"@stdlib/math-base-special-gammaln": "^0.2.0",
|
|
73
|
+
"@stdlib/math-base-special-kernel-betaincinv": "^0.2.0",
|
|
74
|
+
"@stdlib/math-base-special-ln": "^0.2.0",
|
|
75
|
+
"@stdlib/math-base-special-log1p": "^0.2.0",
|
|
76
|
+
"@stdlib/math-base-special-max": "^0.2.0",
|
|
77
|
+
"@stdlib/math-base-special-min": "^0.2.0",
|
|
78
|
+
"@stdlib/math-base-special-pow": "^0.2.0",
|
|
79
|
+
"@stdlib/math-base-special-sqrt": "^0.2.0",
|
|
80
|
+
"@stdlib/random-base-randu": "^0.1.0",
|
|
81
|
+
"@stdlib/string-format": "^0.2.0",
|
|
82
|
+
"@stdlib/utils-constant-function": "^0.2.0",
|
|
83
|
+
"@stdlib/utils-define-nonenumerable-read-only-accessor": "^0.2.0",
|
|
84
|
+
"@stdlib/utils-define-nonenumerable-read-only-property": "^0.2.0",
|
|
85
|
+
"@stdlib/utils-define-property": "^0.2.0",
|
|
86
|
+
"@stdlib/utils-keys": "^0.2.0",
|
|
88
87
|
"tape": "git+https://github.com/kgryte/tape.git#fix/globby",
|
|
89
88
|
"istanbul": "^0.4.1",
|
|
90
|
-
"tap-
|
|
89
|
+
"tap-min": "git+https://github.com/Planeshifter/tap-min.git",
|
|
90
|
+
"@stdlib/bench-harness": "^0.2.0",
|
|
91
|
+
"@stdlib/bench": "^0.3.1"
|
|
91
92
|
},
|
|
92
93
|
"engines": {
|
|
93
94
|
"node": ">=0.10.0",
|
|
@@ -122,7 +123,7 @@
|
|
|
122
123
|
"continuous"
|
|
123
124
|
],
|
|
124
125
|
"funding": {
|
|
125
|
-
"type": "
|
|
126
|
-
"url": "https://
|
|
126
|
+
"type": "opencollective",
|
|
127
|
+
"url": "https://opencollective.com/stdlib"
|
|
127
128
|
}
|
|
128
129
|
}
|
package/docs/types/test.ts
DELETED
|
@@ -1,29 +0,0 @@
|
|
|
1
|
-
/*
|
|
2
|
-
* @license Apache-2.0
|
|
3
|
-
*
|
|
4
|
-
* Copyright (c) 2021 The Stdlib Authors.
|
|
5
|
-
*
|
|
6
|
-
* Licensed under the Apache License, Version 2.0 (the "License");
|
|
7
|
-
* you may not use this file except in compliance with the License.
|
|
8
|
-
* You may obtain a copy of the License at
|
|
9
|
-
*
|
|
10
|
-
* http://www.apache.org/licenses/LICENSE-2.0
|
|
11
|
-
*
|
|
12
|
-
* Unless required by applicable law or agreed to in writing, software
|
|
13
|
-
* distributed under the License is distributed on an "AS IS" BASIS,
|
|
14
|
-
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
15
|
-
* See the License for the specific language governing permissions and
|
|
16
|
-
* limitations under the License.
|
|
17
|
-
*/
|
|
18
|
-
|
|
19
|
-
/* tslint:disable:no-unused-expression */
|
|
20
|
-
|
|
21
|
-
import f = require( './index' );
|
|
22
|
-
|
|
23
|
-
|
|
24
|
-
// TESTS //
|
|
25
|
-
|
|
26
|
-
// The exported value is the expected interface...
|
|
27
|
-
{
|
|
28
|
-
f; // $ExpectType Namespace
|
|
29
|
-
}
|