Skip to content

Repository files navigation

odrpack (-python)

Test-LinuxcodecovLatest CommitPyPI - DownloadsAsk DeepWiki

Description

This Python package provides bindings for the well-known weighted orthogonal distance regression (ODR) solver odrpack95. This design ensures that users benefit from the performance and reliability of the original Fortran implementation, while working within the modern Python ecosystem.

ODR, also known as errors-in-variables regression, is designed primarily for instances when both the explanatory and response variables have significant errors.

Deming regression; special case of ODR.

Installation

You can install the package via pip:

pip install odrpack

Documentation and Usage

The following example demonstrates a simple use of the package. For more comprehensive examples and explanations, please refer to the documentation pages.

fromodrpackimportodr_fitimportnumpyasnpxdata= [0.982, 1.998, 4.978, 6.01]
ydata= [2.7, 7.4, 148.0, 403.0]
beta0= [2.0, 0.5]
bounds= ([0.0, 0.0], [10.0, 0.9])
deff(x: np.ndarray, beta: np.ndarray) ->np.ndarray:
"Model function."returnbeta[0] *np.exp(beta[1]*x)
sol=odr_fit(f, xdata, ydata, beta0, bounds=bounds)
print("beta:", sol.beta)
print("delta:", sol.delta)
beta: [1.63336897 0.9 ]
delta: [-0.36885696 -0.31272648 0.02929022 0.11031872]

About

Python bindings for the modernized version of odrpack95.

Topics

Resources

Stars

23 stars

Watchers

2 watching

Forks

Releases

Contributors

Languages