Liking cljdoc? Tell your friends :D

criterium.optimisation.interface

Public API for the optimisation component.

Provides numerical optimisation algorithms:

  • Linear regression for fitting linear models to data
Public API for the optimisation component.

Provides numerical optimisation algorithms:
- Linear regression for fitting linear models to data
raw docstring

linear-regressionclj

(linear-regression xs ys)

Perform simple linear regression: y = a0 + a1*x.

Returns a map with:

  • :coeffs [a0 a1] - intercept and slope
  • :variance - residual variance (MSE with n-2 degrees of freedom)
  • :r-sqr - coefficient of determination (R-squared)
Perform simple linear regression: y = a0 + a1*x.

Returns a map with:
- :coeffs [a0 a1] - intercept and slope
- :variance - residual variance (MSE with n-2 degrees of freedom)
- :r-sqr - coefficient of determination (R-squared)
sourceraw docstring

sum-square-deltaclj

(sum-square-delta vs mv)

Sum of squared differences from a mean value.

Sum of squared differences from a mean value.
sourceraw docstring

cljdoc builds & hosts documentation for Clojure/Script libraries

Keyboard shortcuts
Ctrl+kJump to recent docs
Move to previous article
Move to next article
Ctrl+/Jump to the search field
× close