simple linear regression quality
Project description
Simple Linear Regression:
An analysis of the quality of the regression is carried out
Table of Contents
Simple Linear Regression Assumptions:
- Outlier: The term anomaly indicates that there is data that deviates significantly from the rest.
- Normality: refers to the normal distribution of errors or residuals.
- Homoscedasticity: is another simple linear regression assumption and indicates whether the variance of the residuals is the same across different groups in the database.
- Independence: refers to the absence of temporal correlation between residuals.
- Linearity: is associated with the presence of a constant change of the variable to be predicted with respect to the predictor.
Simple linear regression Quality
Installation
Instructions on how to install the project. For example:
pip install sl-regression-quality
Code Example
For instance, the following code can be executed in Google Colab. Simply copy and paste it into a new Colab notebook.
#--------------------------------------------------------------------------------
# 1) Load libraries:
import pandas as pd
from sl_regression_quality.main_routine import regression_quality
from sl_regression_quality.load_data import load_csv
#--------------------------------------------------------------------------------
# 2) Load data
dataset = load_csv('Data_x_y.csv') # your data
df = load_csv('Data_y_full.csv') # your data
alpha = 0.05 # significance level
dL = 1.055 # dL
# Total:
x=dataset.iloc[:27,1:2].values
y=dataset.iloc[:27,2:3].values
y_res = df.iloc[:,3:6].values
#--------------------------------------------------------------------------------
# 3) Run analysis
regression_quality(x,y,alpha,dL,y_res)
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 Distributions
No source distribution files available for this release.See tutorial on generating distribution archives.
Built Distribution
File details
Details for the file sl_regression_quality-0.2.3-py3-none-any.whl
.
File metadata
- Download URL: sl_regression_quality-0.2.3-py3-none-any.whl
- Upload date:
- Size: 17.7 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.11.5
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fb9f330332420d1a5e1e08dc43568c4808b4085b55d6e78e2bfd176f4d272296 |
|
MD5 | dc56a74f24ec61b3a0d63a39a0cc4186 |
|
BLAKE2b-256 | f861c35088ecca5d26ffc975daa2d4f82003106ecb62dbcc4924387c60d00e03 |