Metadata-Version: 2.1
Name: LinearRegression-pkg
Version: 0.1
Summary: A simple linear regression model implemented from scratch.
Home-page: https://github.com/yourusername/linear_regression_pkg
Author: Said M Senhadji
Author-email: saidsenhadji06@gmail.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# LinearRegression_pkg

`LinearRegression_pkg` is a Python library for Linear Regression

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install `package_name`.

```bash
pip install LinearRegression_pkg
```

## Usage

```python
import LinearRegression

#
LinearRegression.fit(epochs , lr)

# returns prediction for inp
LinearRegression.predict(inp)

# returns 'phenomenon'
LinearRegression.module_name('phenomena')
```

## License

[MIT](https://choosealicense.com/licenses/mit/)
