Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Compare Sales and Profit | Business Data Visualization
Python for Business Analysts
セクション 2.  7
single

single

bookChallenge: Compare Sales and Profit

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

Comparing sales and profit side by side is essential for business analysis because it reveals products that may generate high revenue but yield low profit. By visualizing both metrics together, you can quickly spot items that, despite strong sales, might have high costs or low margins, as well as products that are both strong sellers and highly profitable. This insight helps you identify where to focus efforts to improve profitability and avoid relying solely on revenue figures when making strategic decisions.

タスク

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

Write a function compare_sales_profit(sales_list, profit_list, product_names) that creates a matplotlib figure with two subplots: one bar chart for sales and one bar chart for profits, both labeled and titled for clarity.

  • Create a matplotlib figure with two subplots arranged in one row and two columns.
  • In the first subplot, plot a bar chart of sales_list with product_names as labels.
  • In the second subplot, plot a bar chart of profit_list with product_names as labels.
  • Add appropriate titles and axis labels to both subplots.

解答

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

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

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

セクション 2.  7
single

single

AIに質問する

expand

AIに質問する

ChatGPT

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

some-alt