Skip to content

njelicic/numpy-ols

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

9 Commits
 
 
 
 

Repository files navigation

numpy-ols

Ordinary Least Squares in just NumPy. Follows the Sklearn API.

Usage:

from ols import OLS

clf = OLS(fit_intercept=True)

clf.fit(X,y)

clf.predict(X_test)

clf.summary(feature_names)

About

Ordinary Least Squares in just NumPy

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages