根据您提供的数据,我们可以从以下几个维度进行分析:
品牌集中度:
多渠道投放:
类目偏好:
运营效率:
让我们逐一进行分析:
首先,需要找出销售额最高的前3个品牌及其销售额占比。由于具体销售额数据没有提供,我们可以假设按照订单数量和单品价格的平均值来估算销售额。
从订单量来看,销售排名靠前的品牌可能是:
假设每个品牌的商品单价相近,可以计算大致的占比。
# 假设平均订单金额为10元
total_sales = 86 * 10 + 2 * 10 + 5 * 10
sales_brand_1 = 86 * 10
sales_brand_2 = 2 * 10
sales_brand_3 = 5 * 10
# 计算前3品牌的销售额占比
percentage_brand_1 = (sales_brand_1 / total_sales) * 100
percentage_brand_2 = (sales_brand_2 / total_sales) * 100
percentage_brand_3 = (sales_brand_3 / total_sales) * 100
print(f"Brand 1: {percentage_brand_1:.2f}%")
print(f"Brand 2: {percentage_brand_2:.2f}%")
print(f"Brand 3: {percentage_brand_3:.2f}%")
# 计算总占比
total_percentage = (sales_brand_1 + sales_brand_2 + sales_brand_3) / total_sales * 100
print(f"Top 3 Brands Combined: {total_percentage:.2f}%")
结果可能如:
假设每个品牌关联的达人、直播和视频的数量如下:
brands = [
{"name": "爽露爽官方旗舰店", "daicans": 137, "lives": 4, "videos": 5},
{"name": "全德官方旗舰店", "daicans": 2, "lives": 13, "videos": 8},
# ... 其他品牌
]
# 统计每个品牌的达人、直播和视频数量
for brand in brands:
print(f"{brand['name']}: {brand['daicans']}达人们,{brand['lives']}场直播,{brand['videos']}个视频")
可以观察到:
从数据中提取主要类目,例如:
# 假设按照类目进行分类
categories = {
"食品饮料": ["爽露爽官方旗舰店", "日食记官方旗舰店"],
"生鲜": ["崔奶奶官方旗舰店"],
# ... 其他类目
}
for category, brands in categories.items():
print(f"{category}: {brands}")
可以看到:
分析动销商品数与直播/视频投放的关系,可以使用如下代码进行分析(假设已有数据):
# 示例数据:动销商品数和直播/视频数量
data = [
{"brand": "爽露爽官方旗舰店", "active_items": 137, "lives": 4},
# ... 其他品牌
]
correlation_data = {}
for entry in data:
brand = entry["brand"]
active_items = entry["active_items"]
lives = entry["lives"]
if lives > 0:
correlation = active_items / lives
---
<small>以上分析数据来源:互联岛</small>