Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
学ぶ Challenge: Analyze Pump Pressure Data | Data Analysis for Engineers
Python for Engineers
セクション 1.  5
single

single

bookChallenge: Analyze Pump Pressure Data

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

In engineering, analyzing sensor data is essential for monitoring system performance and detecting anomalies. When you have a series of measurements—such as pump pressure readings from a water treatment plant—descriptive statistics like mean, median, and standard deviation help you summarize and understand the data's central tendency and spread. Identifying outliers, especially those that are more than two standard deviations from the mean, is a standard approach to flag potential faults or abnormal events that may require further investigation.

タスク

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

Given a list of pump pressure readings in kilopascals, perform basic statistical analysis to summarize the data and detect possible outliers.

  • Calculate the mean of the values in pressure_readings.
  • Determine the median value of pressure_readings.
  • Compute the standard deviation of pressure_readings.
  • Identify all readings that are more than two standard deviations away from the mean.
  • Return a dictionary with the following keys and their corresponding values: 'mean', 'median', 'std_dev', and 'outliers'.
  • Do not print anything in the function.

解答

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

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

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

セクション 1.  5
single

single

AIに質問する

expand

AIに質問する

ChatGPT

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

some-alt