Loading...

Plus+ Python

Applying Logistic Regression to Make Predictions About the Next Day in Python

Applying Logistic Regression to Make Predictions About the Next Day in Python

Logistic Regression Prediction
Logistic regression is a statistical method for modeling the probability of a binary outcome, making it a popular choice for binary classification problems. It is particularly useful when the response variable is categorical (e.g., yes/no, pass/fail, win/lose) and you are interested in predicting the likelihood of one of these categories based on one or multiple predictor variables. Logistic regression is also robust to small noise in the dataset and less prone to over-fitting. What is our binary outcome in this example? We will predict whether or not the next day is positive, above 0% return, or not. Our data set will come from BTC on-chain block meta statistics (available for our members as part of Plus+ Files).

**Model feature selection is crucial to model performance - what are our features? Just the on-chain block data. Model performance metrics could be improved by identifying (or removing) features. **


The Code
The following is the progression of the working Python code to create a logistic regression model based on data and ultimately make predictions. First, load all of the relevant data sets and format into correct features (removing unnecessary values like "block_number"). Next we setup our target and features variables using our Pandas dataframe. If our data is split with the target variable removed, we will pick a portion to set aside for testing and then train the rest of the data. In this case, we set split % to 20%. So 80% will be used for training, and then 20% will be used for evaluating the model. Next we define our scaler for our numerical values (this shrinks range of values for ML model to digest better) - we can use either a MinMaxScaler which scales everything between 0 and 1. The other type of scaler is a StandardScaler, which standardizes the distribution of the data.

The next big thing we do is we setup a pipeline. Essentially, we define a few steps that our model will do every time, like do scaling and then create the model. Then we will pass this pipeline into a Randomized Search for the best hyperparameters to use that will result in best model performance. This model is defined for us as the "best model". We will then use this model to make predictions on the unseen portion of data, which is known as our test set. Probabilities will then be calculated and model performance assessed. As always, every line of code is commented for your benefit. Feel free to modify and implement as you wish.

** Model does not guarantee results **

Plus+ membership required

Create a Plus+ account to view the live codebase.

This article has a fully working, notebook-ready code block. Sign up for Plus+ to access it and the rest of the 20+ premium articles.

Subscribe to Plus+ Browse Plus+ articles