You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm looking to do multiple logistic regression, where my single dependent variable has a binary outcome: 0 or 1, with multiple explanatory variables (floating numbers).
Is there a mljs library that I can use to accomplish this?
The text was updated successfully, but these errors were encountered:
If your outcome is categorical then you want to look for "classification" algorithm, not "regression".
Do you already know the outcome of you samples? If yes the keyword is "supervised classification". If not "unsupervised classification"
Have a look at the "Supervised learning" and "Unsupervised learning" sections in the ML readme. Some of them are only for regression problems so not a fit for you.
Really liking this library; thanks!
I'm looking to do multiple logistic regression, where my single dependent variable has a binary outcome: 0 or 1, with multiple explanatory variables (floating numbers).
Is there a
mljs
library that I can use to accomplish this?The text was updated successfully, but these errors were encountered: