Book Image

Data Science for Marketing Analytics - Second Edition

By : Mirza Rahim Baig, Gururajan Govindan, Vishwesh Ravi Shrimali
Book Image

Data Science for Marketing Analytics - Second Edition

By: Mirza Rahim Baig, Gururajan Govindan, Vishwesh Ravi Shrimali

Overview of this book

Unleash the power of data to reach your marketing goals with this practical guide to data science for business. This book will help you get started on your journey to becoming a master of marketing analytics with Python. You'll work with relevant datasets and build your practical skills by tackling engaging exercises and activities that simulate real-world market analysis projects. You'll learn to think like a data scientist, build your problem-solving skills, and discover how to look at data in new ways to deliver business insights and make intelligent data-driven decisions. As well as learning how to clean, explore, and visualize data, you'll implement machine learning algorithms and build models to make predictions. As you work through the book, you'll use Python tools to analyze sales, visualize advertising data, predict revenue, address customer churn, and implement customer segmentation to understand behavior. By the end of this book, you'll have the knowledge, skills, and confidence to implement data science and machine learning techniques to better understand your marketing data and improve your decision-making.
Table of Contents (11 chapters)
Preface

8. Fine-Tuning Classification Algorithms

Activity 8.01: Implementing Different Classification Algorithms

Solution:

  1. Import the logistic regression library:

    from sklearn.linear_model import LogisticRegression

  2. Fit the model:

    clf_logistic = LogisticRegression(random_state=0,solver='lbfgs')\

                   .fit(X_train[top7_features], y_train)

    clf_logistic

    The preceding code will give the following output:

    LogisticRegression(random_state=0)

  3. Score the model:

    clf_logistic.score(X_test[top7_features], y_test)

    You will get the following output: 0.7454031117397454.

    This shows that the logistic regression model is getting an accuracy of 74.5%, which is a mediocre accuracy but serves as a good estimate of the minimum accuracy you can expect.

  4. Import the svm library:

    from sklearn import svm

  5. Scale the training and testing data as follows:

    from sklearn.preprocessing import MinMaxScaler

    scaling = MinMaxScaler...