-
-
Save anilpai/d38b59be224d4a6255d939cdf4225998 to your computer and use it in GitHub Desktop.
import pandas as pd | |
import numpy as np | |
import matplotlib.pyplot as plt | |
# Set random seed for reproducibility | |
np.random.seed(42) | |
# Platforms and other variables | |
platforms = ['Google', 'Meta', 'Bing', 'LinkedIn'] | |
campaigns = ['Campaign A', 'Campaign B', 'Campaign C'] | |
audiences = ['Audience 1', 'Audience 2', 'Audience 3'] | |
# Generate synthetic data | |
data_list = [] | |
for platform in platforms: | |
for _ in range(100): | |
entry = { | |
'Platform': platform, | |
'Campaign': np.random.choice(campaigns), | |
'Audience': np.random.choice(audiences), | |
'Impressions': np.random.randint(1000, 10000), | |
'Clicks': np.random.randint(100, 1000), | |
'Conversions': np.random.randint(10, 100), | |
'Cost': np.random.uniform(500, 5000), | |
'Revenue': np.random.uniform(1000, 10000) | |
} | |
data_list.append(entry) | |
# Create DataFrame | |
data = pd.DataFrame(data_list) | |
# Calculate performance metrics | |
data['CTR'] = data['Clicks'] / data['Impressions'] | |
data['CPC'] = data['Cost'] / data['Clicks'] | |
data['CPA'] = data['Cost'] / data['Conversions'] | |
data['ROAS'] = data['Revenue'] / data['Cost'] | |
# Cross-platform performance comparison | |
platform_performance = data.groupby('Platform').agg({ | |
'Impressions': 'sum', | |
'Clicks': 'sum', | |
'Conversions': 'sum', | |
'Cost': 'sum', | |
'Revenue': 'sum' | |
}).reset_index() | |
platform_performance['CTR'] = platform_performance['Clicks'] / platform_performance['Impressions'] | |
platform_performance['CPC'] = platform_performance['Cost'] / platform_performance['Clicks'] | |
platform_performance['CPA'] = platform_performance['Cost'] / platform_performance['Conversions'] | |
platform_performance['ROAS'] = platform_performance['Revenue'] / platform_performance['Cost'] | |
print(platform_performance) | |
# Analyze audience performance across platforms | |
audience_performance = data.groupby(['Platform', 'Audience']).agg({ | |
'Impressions': 'sum', | |
'Clicks': 'sum', | |
'Conversions': 'sum', | |
'Cost': 'sum', | |
'Revenue': 'sum' | |
}).reset_index() | |
audience_performance['CTR'] = audience_performance['Clicks'] / audience_performance['Impressions'] | |
audience_performance['CPC'] = audience_performance['Cost'] / audience_performance['Clicks'] | |
audience_performance['CPA'] = audience_performance['Cost'] / audience_performance['Conversions'] | |
audience_performance['ROAS'] = audience_performance['Revenue'] / audience_performance['Cost'] | |
print(audience_performance) | |
# Visualize ROAS by Platform | |
plt.bar(platform_performance['Platform'], platform_performance['ROAS']) | |
plt.title('ROAS by Platform') | |
plt.xlabel('Platform') | |
plt.ylabel('ROAS') | |
plt.show() |
More Questions:
- Platform Comparison: Assess which platform has higher CTR and ROAS.
- Campaign Performance: Identify top-performing campaigns in terms of conversions and revenue.
- Cost Efficiency: Compare CPC and CPA to determine cost efficiency across platforms and campaigns.
- Audience Performance: Identify which audiences have the highest ROAS to focus ad spend on the most profitable segments.
- Day of Week Trends: Determine which days yield better performance, possibly reallocating budget to high-performing days.
- Device Analysis: Assess which devices lead to higher conversions or ROAS to optimize for those platforms.
- Ad Type Effectiveness: Evaluate which ad formats (image, Video, Carousel) generate better engagement and conversions.
- Correlation Findings: Understand relationships between metrics (e.g., a strong correlation between CTR and ROAS) to inform strategy.
- PLATFORM COMPARISON
CTR Analysis:
- LinkedIn: Highest CTR at 5.42%
- Google: Second highest at 5.12%
- Bing: Third at 5.03%
- Meta: Lowest at 4.87%
ROAS Ranking:
- Meta: 1.99 (Best performer)
- Google: 1.93
- Bing: 1.84
- LinkedIn: 1.72
Key Insight: While LinkedIn leads in CTR, it has the lowest ROAS, suggesting that higher click-through rates don't necessarily translate to better return on investment.
- CAMPAIGN PERFORMANCE
Top Performers by Conversions:
- Meta: 5,746 conversions
- Bing: 5,426 conversions
- Google: 5,264 conversions
- LinkedIn: 5,041 conversions
Revenue Generation:
-
Meta: $556,089.95
-
Google: $546,251.83
-
Bing: $519,701.40
-
LinkedIn: $501,932.79
-
COST EFFICIENCY ANALYSIS
CPC Comparison:
- Meta: $48.53 (Most efficient)
- Bing: $52.14
- Google: $53.63
- LinkedIn: $57.79 (Least efficient)
CPA Analysis:
Meta Audiences:
- Audience 2: $45.20 (Most efficient)
- Audience 3: $45.04
- Audience 1: $59.48
Google Audiences:
- Audience 2: $51.79
- Audience 3: $51.15
- Audience 1: $58.91
LinkedIn Audiences:
- Audience 2: $53.83
- Audience 1: $54.15
- Audience 3: $66.49 (Least efficient)
- AUDIENCE PERFORMANCE
Top ROAS by Audience:
- Meta Audience 3: 2.25
- Google Audience 2: 2.03
- Bing Audience 3: 1.96
- Bing Audience 2: 1.94
Lowest Performing Audiences:
-
LinkedIn Audience 3: 1.65
-
Bing Audience 1: 1.66
-
LinkedIn Audience 1: 1.67
-
CORRELATION FINDINGS
Key Correlations:
CTR and ROAS:
- Weak negative correlation observed
- LinkedIn: Highest CTR (5.42%) but lowest ROAS (1.72)
- Meta: Lowest CTR (4.87%) but highest ROAS (1.99)
- Suggests CTR isn't a reliable predictor of ROAS
CPC and ROAS:
- Moderate negative correlation
- Platforms with lower CPC tend to have higher ROAS
- Meta exemplifies this with lowest CPC ($48.53) and highest ROAS (1.99)
Conversion Volume and Revenue:
- Strong positive correlation
- Meta leads in both conversions (5,746) and revenue ($556,089.95)
- Consistent pattern across platforms
STRATEGIC RECOMMENDATIONS:
- Budget Allocation:
- Increase investment in Meta, particularly Audience 3
- Reduce spend on LinkedIn Audience 3
- Maintain or slightly increase Google Audience 2 investment
- Cost Optimization:
- Implement Meta's targeting strategies across platforms
- Review LinkedIn's bidding strategy to reduce CPC
- Focus on audiences with CPA under $50
- Performance Enhancement:
A. Short-term actions:
- Scale Meta Audience 3 campaigns
- Optimize LinkedIn cost efficiency
- Replicate successful audience targeting from Meta across platforms
B. Mid-term strategy:
- Develop cross-platform audience testing
- Implement automated bidding rules
- Create platform-specific optimization frameworks
- Testing Framework:
Phase 1: Audience Optimization
- Test lookalike audiences based on top performers
- Experiment with interest-based targeting
- Develop custom audience segments
Phase 2: Bid Strategy Testing
- Test automated vs. manual bidding
- Implement platform-specific bid adjustments
- Develop ROAS-based bid strategies
Phase 3: Creative Optimization
- Test ad format variations
- Implement message testing
- Optimize calls-to-action
MEASUREMENT FRAMEWORK:
Primary Metrics:
- ROAS (Target: >1.9)
- CPA (Target: <$50)
- Conversion Rate (Benchmark against Meta's 10.04%)
- Revenue per Conversion (Target: >$100)
Secondary Metrics:
- CTR (Platform-specific benchmarks)
- CPC (Target: <$50)
- Audience Reach
- Frequency
deep-dive analysis:
A. Meta Deep Dive:
Key Action: Leverage Meta's superior conversion efficiency by:
B. Google Performance Analysis:
Key Action: Optimize for scale while maintaining efficiency:
C. LinkedIn Analysis:
Key Action: Focus on cost optimization:
A. Top Performing Segments Analysis:
Meta Audience 3:
Strategic Implementation:
Google Audience 2:
Implementation Plan:
B. Underperforming Segments Analysis:
LinkedIn Audience 3:
Correction Strategy:
A. Creative Optimization:
B. Bidding Strategy:
C. Budget Allocation Framework:
Immediate Reallocation:
A. Creative Tests:
B. Audience Tests:
C. Bidding Tests:
Key Performance Indicators:
Primary KPIs:
Secondary KPIs: