This repository contains regression projects implemented in both Python and R, showcasing applications of simple linear and logistic regression. The projects are designed to demonstrate the concepts and techniques commonly used in regression analysis.
Regression is one of the fundamental techniques in statistical modeling and machine learning. This repository includes:
- Simple Linear Regression
- Logistic Regression
The projects are implemented using Jupyter Notebooks for Python and R scripts, making it easy to follow along and understand the code.
The repository is primarily composed of:
- Jupyter Notebook (99.2%)
- R (0.8%)
The repository includes the following projects:
-
Simple Linear Regression:
- Demonstrates predicting a continuous variable using one or more explanatory variables.
- Implemented in Python via Jupyter Notebooks.
-
Logistic Regression:
- Shows binary classification using logistic regression.
- Implemented in Python and R.
- Clone the repository:
git clone https://github.com/eyabesbes/Regression.git cd Regression
- Install the required Python libraries using
pip
:pip install -r requirements.txt
- Launch Jupyter Notebook:
jupyter notebook
- Ensure R is installed on your system.
- Install necessary R packages by running the provided scripts.
- Open the relevant Jupyter Notebook or R script.
- Follow the comments and instructions to understand and execute the regression models.
- Modify datasets or parameters as needed to experiment with the models.