根据提供的数据,我们可以从以下几个核心维度进行分析:
TOP3品牌小店销售额占比:
top3_brands = ['自然堂官方旗舰店', '诺特兰德官方旗舰店', 'AMORTALS尔木萄官方旗舰店']
top3_sales = sum([data[brand]['销售额'] for brand in top3_brands])
total_sales = sum([data[brand]['销售额'] for brand in data.keys()])
concentration_ratio = (top3_sales / total_sales) * 100
关联达人/直播/视频数的规模差异:
channels = ['关联达人', '直播', '视频']
for channel in channels:
total_channel_count = sum([data[brand][channel] for brand in data.keys()])
print(f"总{channel}数: {total_channel_count}")
top3_brands_channel_count = [data[brand][channel] for brand in top3_brands]
top3_avg_channel_count = sum(top3_brands_channel_count) / len(top3_brands)
print(f"{top3_brands}均值{channel}数: {top3_avg_channel_count}")
品牌官方小店的热门带货类目:
from collections import Counter
all_categories = []
for brand in data.keys():
categories = list(data[brand]['类别'])
all_categories.extend(categories)
category_counter = Counter(all_categories)
top_categories = category_counter.most_common(5)
动销商品数与直播/视频投放的联动表现:
for brand in data.keys():
active_items = data[brand]['销售单品数']
live_video_count = sum([data[brand][channel] for channel in ['直播', '视频']])
efficiency_ratio = (live_video_count / active_items) if active_items > 0 else 0
print(f"{brand} 动销商品数: {active_items}, 直播/视频投放数量: {live_video_count}, 运营效率: {efficiency_ratio}")
通过这些分析,我们可以得出以下结论:
以上分析数据来源:互联岛