Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Window Function Metrics | A/B Test Analysis and Window Functions
SQL for Product Analysts
セクション 4.  4
single

single

bookChallenge: Window Function Metrics

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

タスク

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

You will analyze product metrics for A/B test groups using window functions.

  • Find all users who have made at least one purchase.
  • For each such user, calculate the total number of purchases they have made.
  • Within each ab_group ('A' or 'B'), assign a rank to each user based on their purchase count, with the highest purchase counts ranked first.
  • Use the DENSE_RANK() window function so that users with the same purchase count receive the same rank, and no ranks are skipped.
  • Return these columns: user_id, ab_group, purchase_count, group_purchase_rank.
  • Order the results by ab_group and group_purchase_rank.

解答

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

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

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

セクション 4.  4
single

single

AIに質問する

expand

AIに質問する

ChatGPT

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

some-alt