Simple Logistic Regression
|
04-19-2017, 11:44 AM
Post: #1
|
|||
|
|||
Simple Logistic Regression
The program SIMPLOGI attempts to fit two lists of data (X, Y) to the equation:
y = 1 / (A + B*e^(-x)) by using the translation: X’ = e^-X and Y’ = 1/Y and performing linear regression analysis on X’ and Y’. This is good for all data except when y = 0. Code: EXPORT SIMPLOGI(L1,L2) |
|||
« Next Oldest | Next Newest »
|
User(s) browsing this thread: 1 Guest(s)