Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/avinashbarnwal/stepwisereg

Stepwise Regression-Python
https://github.com/avinashbarnwal/stepwisereg

python stepwise-regression

Last synced: about 8 hours ago
JSON representation

Stepwise Regression-Python

Awesome Lists containing this project

README

        

# Stepwise-Regression

[![PyPI version](https://badge.fury.io/py/stepwisereg.svg)](https://badge.fury.io/py/stepwisereg)

Stepwise Regression in Python.

# Table of Contents

* [About Stepwisereg](https://github.com/avinashbarnwal/stepwisereg/blob/master/README.md#about-stepwisereg)
* [Codemap](https://github.com/avinashbarnwal/stepwisereg/blob/master/README.md#codemap)
* [Installation](https://github.com/avinashbarnwal/stepwisereg/blob/master/README.md#installation)
* [Quick Start](https://github.com/avinashbarnwal/stepwisereg/blob/master/README.md#quick-start)
* [Documentation](https://github.com/avinashbarnwal/stepwisereg/blob/master/README.md#documentation)
* [Contributing](https://github.com/avinashbarnwal/stepwisereg/blob/master/README.md#contributing)
* [License](https://github.com/avinashbarnwal/stepwisereg/blob/master/README.md#license)

# About Stepwisereg

Sklearn doesn't support stepwise regression. This package implements stepwise regression using aic. I have implemented using AIC and it has been motivated from http://trevor-smith.github.io/stepwise-post/. It is to similar to R-Stepwise having null and full models formula.

# Codemap

This package has main class [stepwisereg.py](https://github.com/avinashbarnwal/stepwisereg/blob/master/stepwisereg/stepwisereg.py) and test case is [here](https://github.com/avinashbarnwal/stepwisereg/blob/master/stepwisereg/test/lusc_lung_cancer.py).

# Installation
```
pip install stepwisereg
```

# Quick Start

Test case is [here](https://github.com/avinashbarnwal/stepwisereg/blob/master/stepwisereg/test/lusc_lung_cancer.py)

# Documentation

# Contributing

# License