Skip to main content

Exhaustive-Search for best R^2 in Linear Regression Models

Project description

Kiku

cavemanstatistics 1.0

This package contains unnecessarily slow, brute-force search methods for finding highest R^2 (of linear regression models with specified or unspecified dependant variable) in a dataset. This project is mainly intended to get to know packaging with pypi.org and to develope my workflow. In the future I'd like to vectorize the loops and maybe add more search options and better search methods. Be careful about combinatorial explosion and set the bounds appropriately.

Dependancies

  • NumPy
  • Pandas
  • SciPy
  • scikit-learn
  • Tabulate

Installing

Install with:

pip install cavemanstatistics

Quick documentation

These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.

After installation, import:

from cavemanstatistics import ExhaustiveSearch, BruteForce

Search for highest R^2 (unspecified dependant variable):

model, results = ExhaustiveSearch(data = pd.dataframe, remove = list, lowerbound = int, upperbound = int, adjusted_R2 = bool).solve()
y, x = model
print(model)

('depedant variable', [list of explanatory variables])

ExhaustiveSearch().solve() returns a touple containing a string (dependant variable) and a list (explanatory variables) and a sorted dictionary with all results.

Parameters:

  • data: has to be a pandas dataframe
  • remove: place list of variable names that you would like to exclude as depedant variables (or place an empty list)
  • lowerbound: smallest integer number of explanatory variables in solution set
  • upperbound: largest integer number of exoplanatory variables in solution set
  • adjusted_R2: True for adjusted R^2, false for R^2

Search for highest R^2 (specified dependant variable):

model, results = BruteForce(data = pd.dataframe, Y = str, lowerbound = int, upperbound = int, adjusted_R2 = bool).solve()
y, x = model
print(model)

('depedant variable', [list of explanatory variables])

BruteForce().solve() returns a touple containing a string (dependant) and a list (explanatory variables) and a sorted dictionary with all results.

Parameters:

  • data: has to be a pandas dataframe
  • Y: the name of the variable that you would like to specify as dependant variable
  • lowerbound: smallest integer number of explanatory variables in solution set
  • upperbound: largest integer number of exoplanatory variables in solution set
  • adjusted_R2: True for adjusted R^2, false for R^2

Authors

License

This project is licensed under the MIT License - see the LICENSE.md file for details

Acknowledgments

  • This is a spawn of the frustration caused by the R-Package 'leaps'
  • Tip fedora to the ascii art creators

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

cavemanstatistics-0.5.tar.gz (4.7 kB view details)

Uploaded Source

Built Distribution

cavemanstatistics-0.5-py3-none-any.whl (5.1 kB view details)

Uploaded Python 3

File details

Details for the file cavemanstatistics-0.5.tar.gz.

File metadata

  • Download URL: cavemanstatistics-0.5.tar.gz
  • Upload date:
  • Size: 4.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.4

File hashes

Hashes for cavemanstatistics-0.5.tar.gz
Algorithm Hash digest
SHA256 3e6960649005491c951b6f89edb3a3f8fd674adcdabd16b162aef0b450d77b58
MD5 cd7251f0cbf23f24628a134e364bda7b
BLAKE2b-256 fbe1a15aaddf59c683ad6c192fd278384448a459cd88a5b06fdae1a284a7659e

See more details on using hashes here.

File details

Details for the file cavemanstatistics-0.5-py3-none-any.whl.

File metadata

  • Download URL: cavemanstatistics-0.5-py3-none-any.whl
  • Upload date:
  • Size: 5.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.18.4 setuptools/40.0.0 requests-toolbelt/0.8.0 tqdm/4.24.0 CPython/3.6.4

File hashes

Hashes for cavemanstatistics-0.5-py3-none-any.whl
Algorithm Hash digest
SHA256 63bf3fc87814b36b81eb85134b8444987cfdf32404b6535b2b383172e50d0417
MD5 58e26a39a3643bc2306223a1c8156f4f
BLAKE2b-256 6a1c07e355a3abc6d016ad42eb1f457f2f86dfb72c412ad7e8e6880ee26bcc7a

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page