Exploring Logistic Regression in JavaScript
In my current project, I am looking to fit a multi-variate logistic regression model to a dataset using JavaScript. My main goal is to extract the beta-coefficients for this model. Can anyone provide guidance on how to implement this functionality in JavaScript?
My Attempts So Far
js-regression
(npm): I have tried using the logistic regression example from this package, but it appears to focus more on training and classification rather than coefficient extraction.machinelearn
(npm): Although the documentation includes a logistic regression example, I have struggled to make it work. It seems like this package is also geared towards training and classification tasks.