Simple Logistic Regression - Printable Version +- HP Forums (https://www.hpmuseum.org/forum) +-- Forum: HP Software Libraries (/forum-10.html) +--- Forum: HP Prime Software Library (/forum-15.html) +--- Thread: Simple Logistic Regression (/thread-8205.html) |
Simple Logistic Regression - Eddie W. Shore - 04-19-2017 11:44 AM 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) |