Metadata-Version: 2.1
Name: MASA
Version: 1.4
Summary: Statistical package focused on linear regression and statistical testing.
Home-page: https://github.com/nick12221/Mathematical-and-Statistical-Analytics
Author: Nick Pettit
Author-email: nickpettit12321@gmail.com
License: MIT
Project-URL: Source Code, https://github.com/nick12221/Mathematical-and-Statistical-Analytics
Platform: UNKNOWN
Description-Content-Type: text/markdown
License-File: LICENSE.txt

## **Overview**

Hi Everyone!

This repository is a statistical software package written in Cython. The matrix algebra for solving the OLS equation and statistical formulas are all coded by hand, leveraging Cython's static variable declaration and memory views for more efficient operations.

My Auto Linear Transformation (ALTOLS) algorithm is also included in this package. While the traditional OLS approach assumes all independent variables have a linear relationship with the response variable, this automatically tests for non linear relationships to see if this leads to an improvement in model performance. 

All functions only accept numpy array type objects. Full documentation is available in the package with the help command. A sample jupyter notebook and dataset are included in the "Sample Notebook and Data" folder.

## **Installation**

* 1. Microsoft Visual C++ 14.0 or greater is required. Get it with Microsoft C++ Build Tools. Can be installed through Visual Studio Installer or go to this link: https://visualstudio.microsoft.com/visual-cpp-build-tools/
* 2. Once the above is installed:   **pip install MASA**


