Trend analysis and reporting
📖 Scenario: You work with a SCADA system that collects temperature readings from multiple sensors every hour. Your task is to analyze the temperature trends and generate a simple report showing average temperatures per sensor.
🎯 Goal: Build a small program that stores hourly temperature data for sensors, configures a threshold for reporting, calculates average temperatures per sensor, and prints a summary report.
📋 What You'll Learn
Create a dictionary with sensor names as keys and lists of hourly temperature readings as values
Add a threshold variable to filter sensors with average temperature above this value
Calculate the average temperature per sensor using a loop
Print a report listing sensors with average temperature above the threshold
💡 Why This Matters
🌍 Real World
SCADA systems monitor industrial sensors and analyze trends to detect anomalies or optimize processes.
💼 Career
DevOps engineers often automate data collection and reporting pipelines for monitoring system health and performance.
Progress0 / 4 steps