根据提供的数据,我们可以从以下几个核心维度进行分析:
首先计算TOP3品牌的销售额占比。
# 示例数据(假设每个品牌的小店销售额)
brand_sales = {
"佳钓尼": 200,
"创威": 150,
"钓鱼王": 120,
# ...其他品牌小店铺的销售数据
}
total_sales = sum(brand_sales.values())
top3_sales = sum(sorted(brand_sales.values(), reverse=True)[:3])
brand_concentration = (top3_sales / total_sales) * 100
print(f"TOP3品牌销售额占比: {round(brand_concentration, 2)}%")
统计每个品牌的关联达人、直播和视频的数量。
# 示例数据(假设每个品牌的小店关联的达人/直播/视频数)
channel_counts = {
"佳钓尼": {"达人数": 3, "直播间数量": 5, "视频数量": 8},
"创威": {"达人数": 2, "直播间数量": 4, "视频数量": 6},
# ...其他品牌小店铺的多渠道投放数据
}
for brand, counts in channel_counts.items():
total_channels = sum(counts.values())
print(f"{brand} 多渠道投放规模: {total_channels}")
统计每个品牌的热门带货类目。
# 示例数据(假设每个品牌的小店主要销售的品类)
category_preference = {
"佳钓尼": {"户外装备": 40, "玩具": 25},
"创威": {"户外装备": 35, "五金/工具": 15},
# ...其他品牌小店铺的主要带货类目
}
for brand, categories in category_preference.items():
total_categories = sum(categories.values())
print(f"{brand} 带货类目偏好: {categories}")
计算每个品牌的动销商品数与直播/视频投放的联动表现。
# 示例数据(假设每个品牌的小店的动销商品数和直播/视频数量)
operation_efficiency = {
"佳钓尼": {"动销商品数": 20, "直播间数量": 5},
"创威": {"动销商品数": 18, "视频数量": 6},
# ...其他品牌小店铺的运营效率数据
}
for brand, data in operation_efficiency.items():
live_video_ratio = (data["直播间数量"] + data["视频数量"]) / data["动销商品数"]
print(f"{brand} 运营效率: 每件商品关联 {round(live_video_ratio, 2)} 个直播/视频")
以上分析数据来源:互联岛