Conduct Safety Checks
Example Prompt:
Example Response:
Related Tasks:
Monitor Train Performance
Example Prompt:
Example Response:
import pandas as pd
import matplotlib.pyplot as plt
# Load the data
train_data = pd.read_csv('train_performance_data.csv')
# Plotting Speed vs Time
plt.figure(figsize=(12, 6))
plt.plot(train_data['Time'], train_data['Speed'], label='Speed (km/h)', color='blue')
plt.title('Train Speed Over Time')
plt.xlabel('Time')
plt.ylabel('Speed (km/h)')
plt.legend()
plt.grid()
plt.show()
# Plotting Distance vs Time
plt.figure(figsize=(12, 6))
plt.plot(train_data['Time'], train_data['Distance'], label='Distance (km)', color='green')
plt.title('Train Distance Over Time')
plt.xlabel('Time')
plt.ylabel('Distance (km)')
plt.legend()
plt.grid()
plt.show()
Related Tasks:
Plan Maintenance Activities
Example Prompt:
Example Response:
Related Tasks:
Ensure Compliance with Regulations
Example Prompt:
Example Response:
Related Tasks:
Prepare Operational Reports
Example Prompt:
Example Response:
Related Tasks: