基于提供的数据,我们可以从以下几个方面进行分析:
品牌集中度:
多渠道投放:
类目偏好:
运营效率:
品牌集中度:
# 假设有一个列表包含各个品牌的销售额
sales = [100, 80, 60, 50, 40, ...]
top3_sales = sum(sorted(sales)[-3:]) / sum(sales)
print(f"TOP3品牌小店的销售额占比为:{top3_sales:.2%}")
多渠道投放:
# 假设有一个字典包含每个品牌的达人/直播/视频数量
channel_activities = {
'BrandA': {'douyin': 10, 'taobao_live': 5, 'video': 8},
'BrandB': {'weibo': 7, 'bilibili': 3, 'tiktok': 6},
...
}
for brand in channel_activities:
print(f"{brand}关联达人/直播/视频数:{sum(channel_activities[brand].values())}")
类目偏好:
# 假设有一个字典包含每个店铺销售的商品类别及其销售额
category_sales = {
'BrandA': {'snacks': 120, 'beverages': 80, ...},
...
}
for brand in category_sales:
top_categories = sorted(category_sales[brand], key=lambda k: -category_sales[brand][k])[:3]
print(f"{brand}的热门带货类目为:{top_categories}")
运营效率:
# 假设有一个字典包含每个店铺的商品动销情况和直播/视频发布次数
efficiency = {
'BrandA': {'active_products': 20, 'videos_and_livestreams': 10},
...
}
for brand in efficiency:
ratio = efficiency[brand]['active_products'] / efficiency[brand]['videos_and_livestreams']
print(f"{brand}的动销商品数与直播/视频投放的比率为:{ratio:.2f}")
以上分析数据来源:互联岛