Alibaba eCommerce Analysis

Posted on Sep 3, 2019

Team AlibabaΒ 

Lan Mond | Yuqin Xu | Maomao Yi | Xiaofeng Zeng (Fred)

 

Project & Dataset background:Β Β 

Alibaba Group Holding Limited is a Chinese multinational conglomerate holding company specializing in e-commerce, retail, Internet, and technology.Β  Tmall.com is one of Alibaba's online trading platform which provides a B2C trading platform for officially registered business and their customers.

Huitong (shorten as HT) is one of the 267,631 registered stores on tmall.com. Started from 2010 , HT sells backpack, toys etc. and had its peak performance through the year but recently, the business is not doing well.

This project aimed to conduct analysis into HT's historical sales records and locate the problems and possible solutions to improve its performance.Β 

Dataset

  • 2010 ~ 2019
  • about 143,000 order records
  • 30 collected features (60 features started from 2019)
  • selling products: backpacks and cases for school, electrical puzzles,Β  Toys(including creative thinking enhancement)
  • end users:Β  kindergarten ~ 12th G
  • buying customers:Β  retail customer (parents ) and whole-sale stores.

Data Cleaning:

  • Missing data imputation:Β 
    • CellPhone = AlipayAccountΒ 
    • Null ==> No (For note and messages)
  • Delete rows:
  • Duplicates
  • Exceptions (Shipping only orders)
  • Delete columns:
  • ContactPhone
  • StoreID
  • StoreName
  • DeliverNoΒ 
  • New columns:Β 
  • AddressΒ  ==> Province & CityΒ 
  • OrderToPay(s)
  • PayToReceive(h)

(includes but not limited to the above)

Sales Performance

Historical Sales Trend

Y- Monthly sales amount
Accumulated sales: Β₯20,704,459Β 
Best month: May-2015 sales: Β₯930,000

Order Count Trend

Y - Order Count/Monthly

Sales -- By Region


Top five provinces:Β  JiangSu, Shanghai, Shandong, Guangdong
(ζ±Ÿθ‹ηœ ζ΅™ζ±Ÿηœ δΈŠζ΅·εΈ‚ 山东省 广东省)
Top 5 provinces on the east coast generated 53% revenue

Sales -- By Product


146,162 products sold which fall into 8439 distinct Items
The top 30 items generated 36.6% of revenue

Order Activity Pattern

Monthly Pattern

Weekly Pattern

Tuesday and Monday top the Weekend

Daily Pattern (2010~2019)


The most orders are generated in 10pm ~ 12am
Follows by lunch break 12pm~ 2pm

Daily Pattern (2019)


93.5% total orders were placedΒ  by cell phone
37% orders fell intoΒ  6pm-12am

Order Placement & Payment Process

Time lapse between order placement and payment
Average: 19.5 seconds
Maximum: 27 seconds

Visitor & Customer Behavior

Visitor Behavior

Y - percentage of visitors who made purchase after visiting the HT Store

Customer Behavior


117,678 registered customers
26,252 Customers came back & bought one or more other items in 30 days
77.7%Β  customers left after first purchase

Customer Review - Word Cloud

Reviews - Successful Orders
Reviews - Cancelled Orders

General Observations:

  1. Best performance 2015
  2. Bad performance 2016
  3. Sales volume clearly declined in 2019
  4. Top 5 selling regions are on the east coast and generated 53% of total sales. (there are 35 provinces + admin territories in China)
  5. Top 30 products out of 8439 (distinct) generated 36% of total sales
  6. less than 2% of the visitors actually converted to a customer
  7. 77.7% customers left after purchased the first item
  8. Average time from order placement to payment is 19.5 seconds

 

 

 

Industrial Comparison

We did research and acquired 2017 ~ 2019 data of both industrial average performance and of the top 10% competitors' performance. Thus we made the following comparison:

Visitor Conversion Rate

Conversion Rate: number of new customers / total store visitors
Conversion Rate Gap
The biggest gap is more than 5 times
Gap = (TOP(AVG) CVR - HT_CVR)/ HT_CVR

 

Transaction Volume

Transaction volume is decreasing, especially in 2019
Performance clearly bellows industrial Average
Gaps between industrial average & Top 10 competitors

Increase visitor volumeΒ 
Increase order quantity / visitor

Conclusions:

  1. HT visitor conversion rate is very much below the industrial average level for instance in 2018: 1.76% vs 3.38%. If HT can improve its conversion rate to industrial level, with an assumed profit rate 10%, HT can bring in extra profit Β₯193,386.53
  2. HT transaction volume is clearly below the industrial average performance

HT can invest in Tmall promotion to increase the number of visitors thus increase sales. Here for this project, we focus on current customers: convert inactive customer to active customer and increase per customer sales.

 

 

Customer Retention

1. Return Pattern

  1. 117,678 Customers
  2. 22,969 Customers came back in 30 days
  3. 26,252 Customers came back and bought other items

We can see from the graph that most customers purchased the second item in 30 days time period. If we can predict the possibility of the return of a customer, then we can follow up with specific policy to encourage the return. Thus increase per customer transactions.

 

2. Customer Retention Prediction

  1. Objective :Β  Predict the probability of consumer return rate in a 30 day period.
  2. Β ModelΒ  Β  :Β  Logistic Regression
  3. Β Β ResultΒ  Β  :
Β  Predict 0 Predict 1
True 0 78731 2930
True 1 11318 4317
  • 0: Not come back in 30 days
  • 1: Come back in 30 days
  • Accuracy: 85%
  • Recall = TP/(TP+FN) = 28%

We first split the dataset to 80% : 20% and created a logistic regression classifier with the training set. The prediction on a customer's return in 30 days period on the test dataset shows in the table shows an accuracy of 85% but poorly on Recall which is TP/(TP+FN) = 28%. What cause this poor performance ?

Recall that 77.7% of the customers never came back after the first purchase. This indicates that the our dataset is very imbalanced between return & non_return which is 77.7 : 22.3. In this case, we tried three mathematical techniques to improve the efficiency of the model

1. Cut off

Raise the threshold of classifier to 0.6 ~ 0.8 in stead of the default value of 0.5

2. Up-sampling

The theory is to fabricate synthesized minority class data to reduce the imbalance between the majority and minority data. return. In this case, we up-sampling bootstraps only the return customer samples to make the major:minor ratio more balanced.


3. Class_Weight

Classifier Recall Score
Classifier Accuracy Score

Β 


3.Market Basket Analysis

  • Market basket analysis
    • Uncover associations between itemsΒ 
    • Looking for combinations that occur together frequentlyΒ 
    • Provide information about purchase behavior
  • Use NLP on Itemname
    • Create 8 most popular categories
    • 93% item names are in those categories
  • Use 1 or 0 to represent each consumer’s purchase behavior
  • Apriori algorithm
    • Calculate confidence of buying 2 products together
    • Rank top 10 confidence results
The above chart shows the confidence in customer's purchase of consequents after purchased the antecedents


Also with data engineering, we were able to locate total 482 product combinations customers purchased and found 84 most popular combinations.


With the above tools, we will be able to follow up with specific promotion policy to encourage the potential purchase of the current customers.

 

Recommendations

  1. UI structures & features improvement
  • Especially item interface pulled by search engine on the platform.Β 
  • Research on the top competitors’ design performance

Β  Β  Β  Β  Convert more random visitors to customers

Β  Β  Β  2. Inactive customer recoverΒ 

  • Database
  • Promotion policies accordingly
  • Reach out to customers

Β  Β  Β  Β  Β Bring inactive accounts back to life

Β  Β  Β 3. Set up customer loyalty reward systemΒ 

  • Accumulated purchase amount - wholesale customer
  • Accumulated purchase times - retail customer

Β  Β  Β  Β  Β Drive increasing activities on the active accounts

Β  Β  Β 4. Set up a systematic filing & tracking system

  • Customer follow up
  • Customer feedback
  • Birthday giftsΒ  (such as store branded backpack hanging toys. For different ages)Β 

Β  Β  Β  Β  Β Maintain & increase customer satisfaction rate

Β  Β  Β 5. Research on tmall.com promotion policiesΒ 

  • Target windows
  • Target customer groups
  • Target season

Β  Β  Β  Β  Β Generate higher visitor traffic

 

 

Further Research Suggestion

 

1.Further analysis with AB test on UIΒ 

Deep research on top competitors UI:Β  page structure, graphic, promotion, product group and item links etc. Thus create systematic AB test plans

2.Further analysis on the 8400 accumulated sold items with NLP

Add catch more features such as age group to the item groups; Together with improved logistic regression model to form a more efficient and accurate group product recommendation system

3.Further analysis on customer reviews with NLP

Help determine more effective marketing approaches

4.Further analysis into the regional featuresΒ 

Between east coast (top 5 provinces, 53% revenue) &Β  western regions(30 province, 47% revenue) to drive regional expansion into the vast western market

5.Further analysis into city & town level sales densityΒ 

Indications of group customer influences such as school clusters. Thus specific regional group marketing plan may be considered: such as the purchased backpack being delivered with store branded fashion toys (hanging on backpack) .Β Β 

The skills the authors demonstrated here can be learned through taking Data Science with Machine Learning bootcamp with NYC Data Science Academy.

About Author

Lan Mond

Recently certified as Data Scientist and Masters in Electrical Engineering alongside with rich international business experience in helping companies to gather and analyze data to make more informed decisions regionally and globally to achieve their business goals while...
View all posts by Lan Mond >

Leave a Comment

No comments found.

View Posts by Categories


Our Recent Popular Posts


View Posts by Tags

#python #trainwithnycdsa 2019 2020 Revenue 3-points agriculture air quality airbnb airline alcohol Alex Baransky algorithm alumni Alumni Interview Alumni Reviews Alumni Spotlight alumni story Alumnus ames dataset ames housing dataset apartment rent API Application artist aws bank loans beautiful soup Best Bootcamp Best Data Science 2019 Best Data Science Bootcamp Best Data Science Bootcamp 2020 Best Ranked Big Data Book Launch Book-Signing bootcamp Bootcamp Alumni Bootcamp Prep boston safety Bundles cake recipe California Cancer Research capstone car price Career Career Day citibike classic cars classpass clustering Coding Course Demo Course Report covid 19 credit credit card crime frequency crops D3.js data data analysis Data Analyst data analytics data for tripadvisor reviews data science Data Science Academy Data Science Bootcamp Data science jobs Data Science Reviews Data Scientist Data Scientist Jobs data visualization database Deep Learning Demo Day Discount disney dplyr drug data e-commerce economy employee employee burnout employer networking environment feature engineering Finance Financial Data Science fitness studio Flask flight delay gbm Get Hired ggplot2 googleVis H20 Hadoop hallmark holiday movie happiness healthcare frauds higgs boson Hiring hiring partner events Hiring Partners hotels housing housing data housing predictions housing price hy-vee Income Industry Experts Injuries Instructor Blog Instructor Interview insurance italki Job Job Placement Jobs Jon Krohn JP Morgan Chase Kaggle Kickstarter las vegas airport lasso regression Lead Data Scienctist Lead Data Scientist leaflet league linear regression Logistic Regression machine learning Maps market matplotlib Medical Research Meet the team meetup methal health miami beach movie music Napoli NBA netflix Networking neural network Neural networks New Courses NHL nlp NYC NYC Data Science nyc data science academy NYC Open Data nyc property NYCDSA NYCDSA Alumni Online Online Bootcamp Online Training Open Data painter pandas Part-time performance phoenix pollutants Portfolio Development precision measurement prediction Prework Programming public safety PwC python Python Data Analysis python machine learning python scrapy python web scraping python webscraping Python Workshop R R Data Analysis R language R Programming R Shiny r studio R Visualization R Workshop R-bloggers random forest Ranking recommendation recommendation system regression Remote remote data science bootcamp Scrapy scrapy visualization seaborn seafood type Selenium sentiment analysis sentiment classification Shiny Shiny Dashboard Spark Special Special Summer Sports statistics streaming Student Interview Student Showcase SVM Switchup Tableau teachers team team performance TensorFlow Testimonial tf-idf Top Data Science Bootcamp Top manufacturing companies Transfers tweets twitter videos visualization wallstreet wallstreetbets web scraping Weekend Course What to expect whiskey whiskeyadvocate wildfire word cloud word2vec XGBoost yelp youtube trending ZORI