Now you can see me
Overview
As customers, we shop with various brands (i.e. labels, retailers and ecommerce marketplaces). Once, we grow comfortable with certain bands, we tend to interact more frequently with them. In today's channel-less world, this interaction takes various forms - visiting stores, following the social media updates for inspiration, searching/browsing online in the apps and last but not the least talking to customer service.
However, despite all the "breadcrumbs" we leave behind with the brand, the experience often leaves us wanting more. On the other hand, brands are increasingly wanting to know and understand about their customers. Various attempts are made at "personalizing" the experience. This is mainly along three pillars below -
- Elevating service in physical touchpoints such as stores
- Loyalty programs to incentivize repeat purchases
- Seeking out patterns in data from products, services, channels and customers
Credits: Howard Tiersky @ CMSWire |
Bridging the Satisfaction Gap
- Databases have evolved from having rigid data structure to flexible schemas
- Cloud has been a huge enabler to store and process data at scale
- Business Intelligence tools have evolved from being able to just "view" dashboards to "actioning" insights
- Multiple tools have emerged to manage data lineage and governance
- Data engineering has finally borrowed the best practices from software engineering around topics like - infrastructure as code, test automation and data meshes.
Art of the Possible, Today
- Limited data, especially when it comes to the brick-and-mortar stores
- Paucity of talent that is required to build and maintain data platforms
- Control the Controllable. Look at the above constraints and work with them for progressing further.
- Small data, big data are just labels. More important question is - Is it "good enough" data? Is it available at the right time to the right users? Are decisions taken on "gut feeling" or based on data? We get more value on ensuring the business processes and IT systems capture and maintain the existing data better.
- Build insights over the existing data, some of these can be deterministic (based on facts), some of these can be probabilistic (derived from facts).
- Brands often obsess over insight that tell "WHAT" happened in the past. No doubt, this is required. Especially to measure and adjust business performance and operations.
- Brands also need to obsess over "WHY" something happened and "HOW" do we improve it in future. This comes from insights that are actionable.
Capturing Intent Signals
Credits: Rajan Manickavasagam |
Understanding the Intent
- Frequency of purchase
- Recency of purchase
- Basket Mix
- Channel Affinity
- Loyalty
- Transaction Value
- Time between purchases
- Locations of purchase
- Demographics
- Lifestyle
- Behaviors and Tendencies
- Habits
- Interests
Transaction
{
time: "28-10-2023",
weather: "30 celsius, humidity 60%",
store: "flagship store, orchard road, singapore",
amount: 1000,
currency: "singapore dollar",
loyalty_points_earned: 100,
loyalty_points_redeemed: 300,
items : {
item_1: {
product_name: “t-shirt long sleeve (black color)”,
product_category: “womens - casual - t-shirt”,
quantity: 3,
price: 300
},
item_2: {
product_name: “womens mid rise jeans (medium size)”,
product_category: “womens - casual - bottoms”,
quantity: 2,
price: 600
},
item_3: {
product_name: “cashmere scarves (black and white)”,
product_category: “womens - accessories”,
quantity: 1,
price: 100
},
}
}
Segments
Season - Unknown, Spring, Summer, Autumn, Winter
Loyalty - Unknown, Casual, Committed
Purpose of Shopping - Unknown, Travel, Weekend, Office, Mixed
Demographics - Male, Female, Transgender, Gender neutral,
Non-binary, Agender, Pangender, Genderqueer, Two-spirit,
Third gender, All, None, Unknown
Age - 20-30, 30-40, 40-50, 50-60, Unknown
For the above transaction, provide possible segments and values in
the following json format -
{segment name: {[multiple segment values], [explanation of segment]}}
{
"Season": ["Unknown", "Summer"],
"Loyalty": ["Committed"],
"Purpose of Shopping": ["Casual", "Office"],
"Demographics": ["Female"],
"Age": ["20-30"],
"Segments": {
"Season": "The transaction took place in October,
which is the summer season in Singapore.
However, the season cannot be determined
conclusively from the transaction data alone.",
"Loyalty": "The customer redeemed 300 loyalty points,
which suggests that
they are a committed customer.",
"Purpose of Shopping": "The customer purchased a mix of
casual and workwear items. The purchase of three
long-sleeved t-shirts suggests that the customer may be shopping
for the cooler autumn weather. Additionally, the purchase
of two pairs of mid-rise jeans and one cashmere scarf
suggests that the customer may also be shopping for workwear.",
"Demographics": "The customer purchased women's clothing,
suggesting that they are female.",
"Age": "The customer spent SGD 1000, which is a
relatively high amount for clothing. This suggests that
they are likely to be in the 20-30 age group, when people are
typically more likely to have disposable income."
}
}
Transaction
{
time: "29-10-2023",
weather: "autumn",
channel: "mobile app",
amount: 500,
currency: "singapore dollar",
loyalty_points_earned: 0,
loyalty_points_redeemed: 0,
items : {
item_1: {
product_name: “formal shirt short sleeve (white color)”,
product_category: “mens - formal - shirt”,
quantity: 1,
price: 100
},
item_2: {
product_name: “mens linen trouser - black (small size)”,
product_category: “mens - formal - bottoms”,
quantity: 2,
price: 150
},
item_3: {
product_name: “pin stripe tie - blue and red”,
product_category: “mens - accessories”,
quantity: 1,
price: 100
},
}
}
Segments
Season - Unknown, Spring, Summer, Autumn, Winter
Loyalty - Unknown, Casual, Committed
Purpose of Shopping - Unknown, Travel, Weekend, Office, Mixed
Demographics - Male, Female, Transgender, Gender neutral,
Non-binary, Agender, Pangender, Genderqueer, Two-spirit,
Third gender, All, None, Unknown
For the above transaction, provide possible segments and values
in the following json format -
{segment name: {[multiple segment values], [explanation of segment]}}
{
"Season": ["Unknown", "Summer", "Autumn"],
"Loyalty": ["Unknown"],
"Purpose of Shopping": ["Office", "Rainy Day"],
"Demographics": ["Male"],
"Age": ["20-30", "30-40"],
"Segments": {
"Season": "The transaction occurred in October,
which is autumn in Singapore.",
"Loyalty": "The customer did not redeem or earn
any loyalty points, which suggests that they are
either a new customer or a customer who does not
shop at the store often.",
"Purpose of Shopping": "The customer purchased a
formal shirt, trousers, and tie, which suggests
that they are shopping for work or a special occasion.
The customer may also be purchasing these items for a
rainy day, as they are all made of materials that
are water-resistant or quick-drying.",
"Demographics": "The customer's age is unknown, but
the average age of customers who purchase formal wear
is typically between 20 and 30 years old.",
"Age": "The customer purchased items that are
typically popular with young adults and adults in
their early 30s, such as a formal shirt and linen
trousers. This suggests that they are in the 20-30
or 30-40 age range."
}
}
Creating Experience from the Intent
- Optimize assortment by store / location
- Additional signal for refining pricing and promotions (especially quantum and timing)
- Personalize the digital experience (homepage, search ranking and product recommendations)
- Decide format and location of stores
- Contextual digital and store marketing campaigns
Comments
Post a Comment