Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Predict Future Campaign Performance | Advanced Analytics for Marketers
Python for Marketers
セクション 3.  3
single

single

bookChallenge: Predict Future Campaign Performance

メニューを表示するにはスワイプしてください

Forecasting campaign results is essential for marketers who want to maximize the impact of their budgets. By predicting how many conversions a campaign might generate based on factors like spend and impressions, you can make more informed decisions about where to allocate resources. This approach helps you set realistic expectations, avoid overspending, and optimize your strategy for better returns. Predictive analytics, such as linear regression, allows you to model relationships between variables and anticipate future outcomes, making your marketing efforts more data-driven and effective.

タスク

スワイプしてコーディングを開始

Given a DataFrame containing past campaign data with columns for spend, impressions, and conversions, your goal is to build a function that predicts conversions for new campaigns using linear regression.

  • Use the spend and impressions columns from the input DataFrame as features for the model.
  • Use the conversions column from the input DataFrame as the target variable.
  • Fit a linear regression model using these features and target.
  • Predict conversions for each item in the new_data list, which contains dictionaries with spend and impressions values.
  • Return the predicted conversions as a NumPy array.

解答

Switch to desktop実践的な練習のためにデスクトップに切り替える下記のオプションのいずれかを利用して、現在の場所から続行する
すべて明確でしたか?

どのように改善できますか?

フィードバックありがとうございます!

セクション 3.  3
single

single

AIに質問する

expand

AIに質問する

ChatGPT

何でも質問するか、提案された質問の1つを試してチャットを始めてください

some-alt