Skip to content

Commit c172163

Browse files
chore: edit comments to reflect package functionality
--- type: pre_commit_static_analysis_report description: Results of running static analysis checks when committing changes. report: - task: lint_filenames status: passed - task: lint_editorconfig status: passed - task: lint_markdown status: na - task: lint_package_json status: na - task: lint_repl_help status: passed - task: lint_javascript_src status: passed - task: lint_javascript_cli status: na - task: lint_javascript_examples status: na - task: lint_javascript_tests status: na - task: lint_javascript_benchmarks status: na - task: lint_python status: na - task: lint_r status: na - task: lint_c_src status: na - task: lint_c_examples status: na - task: lint_c_benchmarks status: na - task: lint_c_tests_fixtures status: na - task: lint_shell status: na - task: lint_typescript_declarations status: na - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent ba26eca commit c172163

File tree

2 files changed

+0
-13
lines changed

2 files changed

+0
-13
lines changed

lib/node_modules/@stdlib/stats/incr/nanskewness/docs/repl.txt

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,6 @@
77
sample skewness. If not provided a value, the accumulator function returns
88
the current corrected sample skewness.
99

10-
If provided `NaN` or a value which, when used in computations, results in
11-
`NaN`, the accumulated value is `NaN` for all future invocations.
12-
1310
Returns
1411
-------
1512
acc: Function

lib/node_modules/@stdlib/stats/incr/nanskewness/lib/main.js

Lines changed: 0 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -29,16 +29,6 @@ var incrskewness = require( '@stdlib/stats/incr/skewness' );
2929
/**
3030
* Returns an accumulator function which incrementally computes a corrected sample skewness, ignoring `NaN` values.
3131
*
32-
* ## Method
33-
*
34-
* The algorithm computes the corrected sample skewness using the formula for `G_1` in [Joanes and Gill 1998][@joanes:1998].
35-
*
36-
* ## References
37-
*
38-
* - Joanes, D. N., and C. A. Gill. 1998. "Comparing measures of sample skewness and kurtosis." _Journal of the Royal Statistical Society: Series D (The Statistician)_ 47 (1). Blackwell Publishers Ltd: 183–89. doi:[10.1111/1467-9884.00122][@joanes:1998].
39-
*
40-
* [@joanes:1998]: http://dx.doi.org/10.1111/1467-9884.00122
41-
*
4232
* @returns {Function} accumulator function
4333
*
4434
* @example

0 commit comments

Comments
 (0)