根据提供的数据,我们可以从以下几个方面进行详细分析:
品牌集中度:
多渠道投放:
类目偏好:
运营效率:
品牌集中度:
top_3_brands_sales = sorted(sales_data, key=lambda x: x['total_sales'], reverse=True)[:3]
total_sales = sum([brand['total_sales'] for brand in sales_data])
concentration = (sum([brand['total_sales'] for brand in top_3_brands_sales])) / total_sales * 100
多渠道投放:
channels = ['influencer', 'live_stream', 'video']
channel_counts = {channel: sum(brand[channel] for brand in sales_data) for channel in channels}
类目偏好:
categories = set([category for brand in sales_data for category in brand['categories']])
category_sales = {category: 0 for category in categories}
for brand in sales_data:
for category, sale in zip(brand['categories'], brand['sales']):
category_sales[category] += sale
category_contribution = {category: (sale / total_sales) * 100 for category, sale in category_sales.items()}
运营效率:
active_items = [brand['active_products'] for brand in sales_data]
live_stream_count = [brand['live_stream'] for brand in sales_data]
video_count = [brand['video'] for brand in sales_data]
conversion_rate = sum([sales * 100 / (items * streams) for sales, items, streams in zip(sales_data['total_sales'], active_items, live_stream_count)]) / len(sales_data)
以上分析数据来源:互联岛