Skip to content

ashwanisng/Starbucks-Capstone

Repository files navigation

Starbucks-Capstone

Project in Data Scientist Nanodegree of Udacity

Table of Contents

1 . Installation

2 . Project Motivation

3 . File Descriptions

4 - Data Model

5 . Blog Website

coffe

Installation

There should be no necessary libraries to run the code here beyond the Anaconda distribution of Python. The code should run with no issues using Python versions 3.*.

Visit localhost:8888 in a web browser to access Jupyter Notebooks.

Project Motivation

It is the Starbuck's Capstone Challenge of the Data Scientist Nanodegree in Udacity. We get the dataset from the program that creates the data simulates how people make purchasing decisions and how those decisions are influenced by promotional offers. We want to make a recommendation engine that recommends Starbucks which offer should be sent to a particular customer.

We are interested to answer the following two questions: 1 - What is the population distribution by gender? 2 - Which are the most popular offer.? 3 - Which gender group has done the most expensive transaction.? 4 - What is the relation between income and transaction.? 5 - The relation between Age and Total expenses.?

File Descriptions

The notebook available here showcases work related to the above questions.

This data set is a simplified version of the real Starbucks app because the underlying simulator only has one product whereas Starbucks actually sells dozens of products.

The data is contained in three files:

  • portfolio.json - containing offer ids and meta data about each offer (duration, type, etc.)
  • profile.json - demographic data for each customer
  • transcript.json - records for transactions, offers received, offers viewed, and offers completed

Here is the schema and explanation of each variable in the files:

portfolio.json

  • id (string) - offer id
  • offer_type (string) - the type of offer ie BOGO, discount, informational
  • difficulty (int) - the minimum required to spend to complete an offer
  • reward (int) - the reward is given for completing an offer
  • duration (int) - time for the offer to be open, in days
  • channels (list of strings)

profile.json

  • age (int) - age of the customer
  • became_member_on (int) - the date when customer created an app account
  • gender (str) - gender of the customer (note some entries contain 'O' for other rather than M or F)
  • id (str) - customer id
  • income (float) - customer's income

transcript.json

  • event (str) - record description (ie transaction, offer received, offer viewed, etc.)
  • person (str) - customer id
  • time (int) - time in hours since the start of the test. The data begins at time t=0
  • value - (dict of strings) - either an offer id or transaction amount depending on the record

Data Model

  • After pre-processing the dataset and after visualization the next part is to make a model that figure out whether the customer responded to offer or not.

  • Here we use six different types of models that will predict whether the customer responded to offer or not.

  • To make a model we will split the data into features and target and also in training and testing data.

Features are time_h, offer_id, amount, reward_x ( Will be renamed to ‘reward’), difficulty, duration_h, offer_type, gender, age_group, income_range, member_type

Target is the event.

Blog Website

A blog has been published Analyzing The Starbuck Offers