[apps/regression] Fix typo in the logistic regression formula

This commit is contained in:
Léa Saviot
2019-07-24 14:42:22 +02:00
committed by EmilieNumworks
parent bc8b5af2e6
commit 040a5cfb15

View File

@@ -5,5 +5,5 @@ LogarithmicRegressionFormula = " y=a·ln(x)+b "
ExponentialRegressionFormula = " y=a·exp(b·x) "
PowerRegressionFormula = " y=a·x^b "
TrigonometricRegressionFormula = " y=a·sin(b·x+c)+d "
LogisticRegressionFormula = " y=c/(a+exp(-b·x)) "
LogisticRegressionFormula = " y=c/(1+a·exp(-b·x)) "
Dash = "-"