Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Visualize User Growth | Product Metrics and Data Exploration
Python for Product Managers
セクション 1.  7
single

single

bookChallenge: Visualize User Growth

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

Monthly Active Users (MAU) is a foundational product metric that reflects how many unique users engage with your product within a given month. Tracking MAU trends helps you understand product adoption, user retention, and the overall health of your product. When preparing for a product review presentation, it is crucial not only to analyze the MAU data but also to visualize it clearly. Effective charts make it easier for stakeholders to see growth patterns, spot anomalies, and make informed decisions. Adding clear labels and a descriptive title ensures your MAU trend chart communicates insights quickly and professionally.

12345678910111213
import matplotlib.pyplot as plt months = [ "Jan", "Feb", "Mar", "Apr", "May", "Jun", "Jul", "Aug", "Sep", "Oct", "Nov", "Dec" ] mau = [1200, 1350, 1500, 1700, 1800, 2000, 2200, 2400, 2600, 2800, 3000, 3200] plt.plot(months, mau, marker='o') plt.xlabel("Month") plt.ylabel("Monthly Active Users") plt.title("MAU Trend for 2023") plt.show()
copy
タスク

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

Write a script that visualizes monthly active user (MAU) data for a product review presentation.

  • Plot the mau values against the months list.
  • Add an x-axis label "Month".
  • Add a y-axis label "Monthly Active Users".
  • Add a chart title "Monthly Active Users (MAU) Growth in 2023".

解答

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

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

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

セクション 1.  7
single

single

AIに質問する

expand

AIに質問する

ChatGPT

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

some-alt