VOOZH about

URL: https://www.geeksforgeeks.org/machine-learning/logistic-regression-using-pyspark-python/

⇱ Logistic Regression using PySpark Python - GeeksforGeeks


  • Courses
  • Tutorials
  • Interview Prep

Logistic Regression using PySpark Python

Last Updated : 23 Jul, 2025

In this tutorial series, we are going to cover Logistic Regression using Pyspark. Logistic Regression is one of the basic ways to perform classification (don’t be confused by the word β€œregression”). Logistic Regression is a classification method. Some examples of classification are:

Loading Dataframe

We will be using the data for Titanic where I have columns PassengerId, Survived, Pclass, Name, Sex, Age, SibSp, Parch, Ticket, Fare, Cabin, and Embarked. We have to predict whether the passenger will survive or not using the Logistic Regression machine learning model. To get started, open a new notebook and follow the steps mentioned in the below code:

Output:

πŸ‘ Image
Showing the data
df.printSchema()
πŸ‘ Image
Schema of the data
df.columns
πŸ‘ Image
Columns in the data

Removing NULL Values Columns

The next step includes removing the data having null values as shown in the above picture. We do not need the columns PassengerId, Name, Ticket, and Cabin as they are not required to train and test the model.

Output:

πŸ‘ Image
 

Convert String Column to Ordinal Columns 

The next task is to convert the string columns (Sex and Embarked) to integral columns as without doing this, we cannot vectorize the data using VectorAssembler. 

Now we need Pipeline to stack the tasks one by one and import and call the Logistic Regression Model.

After pipelining the tasks, we will split the data into training data and testing data to train and test the model.

Output:

data.show()
πŸ‘ Image
 

Model evaluation using ROC-AUC

The results will add extra columns rawPrediction, probability, and prediction because we are transforming the results on our data. After getting the results, we will now find the AUC(Area under the ROC Curve) which will give the efficiency of the model. For this, we will use BinaryClassificationEvaluator as shown:

Output:

Note: In general, an AUC value above 0.7 is considered good, but it's important to compare the value to the expected performance of the problem and the data to determine if it's actually good.

ROC_AUC
πŸ‘ Image
 
Comment