Awesome Linear Regression , is a mathematics API written in Python.
Project description
Awesome Linear Regression
Linear regression attempts to model the relationship between variables by fitting a linear equation to observed data. This repository hosts the development of the Awesome Linear Regression library.
About Awesome Linear Regression
Awesome Linear Regression , is a mathematics API written in Python. It was developed with a focus on enabling fast experimentation. Being able to go from idea to result as fast as possible is key to doing good research.
Awesome Linear Regression is:
- Simple
- Flexible
- Powerful
First contact with Awesome Linear Regression
The core data structures of Awesome Linear Regression are consign and result.
For installation run :
pip install Awesome-Linear-Regression
Here is an exemple
:
from Awesome_Linear_Regression import linearregression as LR
import pandas as pd
import numpy as np
# Sample training data set
x = np.matrix([[0,1],[1,4],[7,8],[50,23]])
y = np.matrix([[2],[9],[23],[96]])
# Train the model
Lr = linearregression(x,y)
Beta, rss = Lr.leastsquare()
Let make prediction
px = np.matrix([[4,7]])
print(Lr.predict(px))
Support
You can ask questions and join the development discussion:
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
File details
Details for the file Awesome_Linear_Regression-1.0.0.tar.gz
.
File metadata
- Download URL: Awesome_Linear_Regression-1.0.0.tar.gz
- Upload date:
- Size: 3.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 80b48cf9ad1f1dcd51f6ece670d82d2c8dbd683beea8a880c8359ef37d4ca0a4 |
|
MD5 | f715f672f830e1c49bc75a028b08d6f1 |
|
BLAKE2b-256 | 822d0a477bf8d305d5e28e101209c7f23b67787781ee2c2f22e29d8da0d79316 |
File details
Details for the file Awesome_Linear_Regression-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: Awesome_Linear_Regression-1.0.0-py3-none-any.whl
- Upload date:
- Size: 4.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.1 CPython/3.9.4
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 0c92a7becfebc874a56d6d8bf8832f4f98d2a5d28492293b91049c7712b7845b |
|
MD5 | 784944b24e120eaf337d111c90f9bd18 |
|
BLAKE2b-256 | 4846ffd254ca3e92c5d5c023e240b8eec60e03f243e93a0205a38587245d3237 |