Skip to content

Commit 4756e95

Browse files
committed
docs: use "probability mass function" instead of "probability density function" for PMF methods
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com> --- 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: na - 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: passed - task: lint_typescript_tests status: na - task: lint_license_headers status: passed ---
1 parent 383707f commit 4756e95

2 files changed

Lines changed: 4 additions & 4 deletions

File tree

  • lib/node_modules/@stdlib/stats/base/dists

lib/node_modules/@stdlib/stats/base/dists/binomial/ctor/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ setReadOnlyAccessor( Binomial.prototype, 'variance', function get() {
317317
setReadOnly( Binomial.prototype, 'cdf', binomialCDF );
318318

319319
/**
320-
* Evaluates the natural logarithm of the probability density function (PMF).
320+
* Evaluates the natural logarithm of the probability mass function (PMF).
321321
*
322322
* @name logpmf
323323
* @memberof Binomial.prototype
@@ -353,7 +353,7 @@ setReadOnly( Binomial.prototype, 'logpmf', binomialLogPMF );
353353
setReadOnly( Binomial.prototype, 'mgf', binomialMGF );
354354

355355
/**
356-
* Evaluates the probability density function (PMF).
356+
* Evaluates the probability mass function (PMF).
357357
*
358358
* @name pmf
359359
* @memberof Binomial.prototype

lib/node_modules/@stdlib/stats/base/dists/hypergeometric/ctor/lib/main.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -311,7 +311,7 @@ setReadOnlyAccessor( Hypergeometric.prototype, 'variance', function get() {
311311
setReadOnly( Hypergeometric.prototype, 'cdf', hypergeometricCDF );
312312

313313
/**
314-
* Evaluates the natural logarithm of the probability density function (PMF).
314+
* Evaluates the natural logarithm of the probability mass function (PMF).
315315
*
316316
* @name logpmf
317317
* @memberof Hypergeometric.prototype
@@ -329,7 +329,7 @@ setReadOnly( Hypergeometric.prototype, 'cdf', hypergeometricCDF );
329329
setReadOnly( Hypergeometric.prototype, 'logpmf', hypergeometricLogPMF );
330330

331331
/**
332-
* Evaluates the probability density function (PMF).
332+
* Evaluates the probability mass function (PMF).
333333
*
334334
* @name pmf
335335
* @memberof Hypergeometric.prototype

0 commit comments

Comments
 (0)