基于提供的数据,我们可以从以下几个维度进行核心分析:
品牌集中度:
多渠道投放:
类目偏好:
运营效率:
品牌集中度:
import pandas as pd
# 假设df是包含所有品牌小店信息的DataFrame
top_brands = df['Brand'].value_counts().head(3)
total_sales_top_brands = df[df['Brand'].isin(top_brands.index)]['Sales'].sum()
total_sales_all_brands = df['Sales'].sum()
concentration = (total_sales_top_brands / total_sales_all_brands) * 100
print(f"TOP3品牌的小店销售额占比:{concentration:.2f}%")
多渠道投放:
# 统计每个品牌的达人、直播/视频数量
df['Reachers'] = df['达人数']
df['Livestreams'] = df['直播间']
df['Videos'] = df['短视频数']
# 计算每个品牌的小店平均的投放渠道数量
avg_reachers_per_brand = df.groupby('Brand').agg({'Reachers': 'mean',
'Livestreams': 'mean',
'Videos': 'mean'}).reset_index()
print(avg_reachers_per_brand)
类目偏好:
# 计算每个品牌的热门带货类目(这里假设有一个列'Category')
top_categories = df['Category'].value_counts().head(5)
print(top_categories)
运营效率:
# 统计动销商品数与直播/视频的关联情况
df['Active_Skus'] = df['动销商品数']
# 分析每个品牌的销售数据,找出与直播和视频投放相关的特征
operational_efficiency_analysis = df.groupby(['Brand', 'Livestreams', 'Videos'])['Sales'].sum().reset_index()
print(operational_efficiency_analysis)
以上分析数据来源:互联岛