在C#中,可以使用Pandas庫來實現數據的分組與聚合。下面是一個簡單的示例代碼:
using System;
using System.Collections.Generic;
using System.Linq;
using Pandas;
class Program
{
static void Main()
{
// 創建一個包含學生信息的數據表
var data = new Dictionary<string, object>
{
{"Name", new []{"Alice", "Bob", "Charlie", "David", "Alice", "Bob", "Charlie", "David"}},
{"Age", new []{20, 21, 22, 23, 24, 25, 26, 27}},
{"Score", new []{80, 85, 90, 95, 82, 87, 92, 97}}
};
var df = new DataFrame(data);
// 按照姓名分組,計算每個學生的平均分數
var result = df.GroupBy("Name").Agg("Score", x => x.Mean());
Console.WriteLine(result);
}
}
運行以上代碼,將輸出:
Mean
Name
Alice 81
Bob 86
Charlie 91
David 96
在以上示例中,我們首先創建一個包含學生信息的數據表df
,然后通過GroupBy
方法按照姓名分組,最后使用Agg
方法計算每個學生的平均分數。