Orthogonal distance regression in python: meaning of returned values

Py-ser

I am following the Orthogonal distance regression method to fit data with errors on both the dependent and independent variables.

I am fitting the data with a simple straight line, my model is y = ax + b.

Now, I am able to write the code and plot the line fitting the data, but I am NOT able to read the results:

Beta: [ 2.08346947  0.0024333 ]
Beta Std Error: [ 0.03654482  0.00279946]
Beta Covariance: [[  2.06089823e-03  -9.99220260e-05]
[ -9.99220260e-05   1.20935366e-05]]
Residual Variance: 0.648029925546
Inverse Condition #: 0.011825289654
Reason(s) for Halting:
   Sum of squares convergence

The Beta is just the array containing the values of the parameters of my model (a, b), and Beta Std Error, the associated errors.

Regarding the other values, I don't know their meaning.

Especially, I would like to know which one is indicative of a goodness-of-fit, something like the chi-square when one fits with the errors only on the dependent variable.

Ffisegydd

Beta Covariance is the covariance matrix of your fitted parameters. It can be thought of as a matrix describing out inter-connected your two parameters are with respect to both themselves and each other.

Residual Variance I believe is a measure of the goodness-of-fit where the smaller the value, the better the fit to your data.

Inverse Condition is the inverse (1/x) of the condition number. The condition number defines how sensitive your fitted function is to changes in the input.

scipy.odr is a wrapper around a much older FORTRAN77 package known as ODRPACK. The documentation for ODRPACK can actually be found on on the scipy website. This may help you in understanding what you need to know as it contains the mathematical descriptions of the parameters.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Dev

Orthogonal distance regression in python: meaning of returned values

From Dev

Daubechies orthogonal wavelet in python

From Dev

Order orthogonal polygon python

From Dev

Counting the distance between values with python

From Dev

What is the meaning of every paramater returned by psutil.cpu_times() in python?

From Dev

ggplot2: How to plot an orthogonal regression line?

From Dev

{Methcomp} – Deming / orthogonal regression – goodness of fit + confidence intervals

From Dev

ggplot2: How to plot an orthogonal regression line?

From Dev

How `poly()` generates orthogonal polynomials? How to understand the "coefs" returned?

From Dev

Determining the range of values returned by Python's hash()

From Dev

Appending multiple returned values to different lists in Python

From Dev

Python: type checking of complex returned values

From Dev

Random order of returned values in python dictionary

From Dev

How to approach storing and comparing returned values in python

From Dev

Appending multiple returned values to different lists in Python

From Dev

Random order of returned values in python dictionary

From Dev

The distance between the meaning of two sentences

From Dev

Parameters of Evdev Scrolling Distance: meaning?

From Dev

Cannot grab returned x, y float values from list to use in point distance

From Dev

GitHub API returned Url meaning

From Dev

How to access a subset of values from the returned set of values of a function in Python?

From Dev

Predicting out future values using OLS regression (Python, StatsModels, Pandas)

From Dev

Linear regression fails in Python with large values in dependent variables

From Dev

Linear regression fails in Python with large values in dependent variables

From Dev

Method to get the max distance (step) between values in python?

From Dev

Python: How to create a complete distance matrix from a row of values?

From Dev

image retrieval from its values(euclidean distance) in python opencv

From Dev

image retrieval from its values(euclidean distance) in python opencv

From Dev

Python: How to create a complete distance matrix from a row of values?

Related Related

  1. 1

    Orthogonal distance regression in python: meaning of returned values

  2. 2

    Daubechies orthogonal wavelet in python

  3. 3

    Order orthogonal polygon python

  4. 4

    Counting the distance between values with python

  5. 5

    What is the meaning of every paramater returned by psutil.cpu_times() in python?

  6. 6

    ggplot2: How to plot an orthogonal regression line?

  7. 7

    {Methcomp} – Deming / orthogonal regression – goodness of fit + confidence intervals

  8. 8

    ggplot2: How to plot an orthogonal regression line?

  9. 9

    How `poly()` generates orthogonal polynomials? How to understand the "coefs" returned?

  10. 10

    Determining the range of values returned by Python's hash()

  11. 11

    Appending multiple returned values to different lists in Python

  12. 12

    Python: type checking of complex returned values

  13. 13

    Random order of returned values in python dictionary

  14. 14

    How to approach storing and comparing returned values in python

  15. 15

    Appending multiple returned values to different lists in Python

  16. 16

    Random order of returned values in python dictionary

  17. 17

    The distance between the meaning of two sentences

  18. 18

    Parameters of Evdev Scrolling Distance: meaning?

  19. 19

    Cannot grab returned x, y float values from list to use in point distance

  20. 20

    GitHub API returned Url meaning

  21. 21

    How to access a subset of values from the returned set of values of a function in Python?

  22. 22

    Predicting out future values using OLS regression (Python, StatsModels, Pandas)

  23. 23

    Linear regression fails in Python with large values in dependent variables

  24. 24

    Linear regression fails in Python with large values in dependent variables

  25. 25

    Method to get the max distance (step) between values in python?

  26. 26

    Python: How to create a complete distance matrix from a row of values?

  27. 27

    image retrieval from its values(euclidean distance) in python opencv

  28. 28

    image retrieval from its values(euclidean distance) in python opencv

  29. 29

    Python: How to create a complete distance matrix from a row of values?

HotTag

Archive