69├── phm08_challenge/ 70│ ├── data/ 71│ │ ├── sensor_data_001.csv 72│ │ └── ... 73│ ├── labels/ 74│ │ ├── fault_labels_001.csv 75│ │ └── ... 76├── our_engine_degradation_simulation/ 77│ ├── data/ 78│ │ ├── engine_data_001...
脚本2: 数据可视化 python深色版本 1import matplotlib.pyplot as plt 2 3def visualize_data(data, labels): 4 fig, ax = plt.subplots(figsize=(10, 5)) 5 ax.plot(data['time'], data['vibration'], label='Vibration Signal') 6 ax.set_xlabel('Time (s)') 7 ax.set_ylabel('Vibration (m/...