Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Find Outliers in Sales Data | Data Quality Essentials
Working with Text, Dates, and Data Cleaning in R
セクション 3.  4
single

single

bookChallenge: Find Outliers in Sales Data

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

タスク

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

You will use the 1.5 * IQR rule to detect outliers in a vector of sales figures. Outliers can sometimes signal data entry errors or rare but valid events.

  • Calculate the first quartile (q1) and third quartile (q3) of the sales vector.
  • Compute the interquartile range (iqr) as q3 - q1.
  • Determine the lower and upper bounds for outliers using the 1.5 * IQR rule.
  • Identify the indices and values of any sales figures below the lower bound or above the upper bound.
  • Return a list with two elements: indices (the positions of outliers in the original vector) and values (the outlier sales figures).

解答

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

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

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

セクション 3.  4
single

single

AIに質問する

expand

AIに質問する

ChatGPT

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

some-alt