Loading

摘要: 排序算法 冒泡排序 正序:将最大的不断交换到序列末尾 void bubble_sort(int *arr,int n){ if(n<2) return ; // 冒泡排序 for(int end = n-1;end>0;end--){ bool sorted = true; for(int i = 阅读全文
posted @ 2025-10-23 09:39 GIPV 阅读(13) 评论(0) 推荐(0)
摘要: [!NOTE] 数据背景介绍 数据来自 比赛举办方: 主要数据是 三个天气数据源nwp1 nwp2 nwp3,以及历史发电功率数据 新能源预测(数据处理) 1. NWP 数据 1.1 nwp数据 nwp 数据 -- NWP代表数值天气预报(Numerical Weather Prediction), 阅读全文
posted @ 2025-10-23 09:34 GIPV 阅读(35) 评论(0) 推荐(0)
摘要: 1. 基于分布的异常检测 1.1 3σ准则 (3-Sigma Rule) 原理:基于正态分布假设,认为距离均值3个标准差之外的数据点为异常值 数学表达式: python def three_sigma_detection(data): mean = np.mean(data) std = np.st 阅读全文
posted @ 2025-10-23 09:31 GIPV 阅读(34) 评论(0) 推荐(0)