共用方式為


DataFrame.GroupBy 方法

定義

多載

GroupBy(String)

DataFrame 資料行中唯一值分組 的資料 columnName 列。

GroupBy<TKey>(String)

DataFrame 資料行中唯一值分組 的資料 columnName 列。

GroupBy(String)

DataFrame 資料行中唯一值分組 的資料 columnName 列。

public Microsoft.Data.Analysis.GroupBy GroupBy (string columnName);
member this.GroupBy : string -> Microsoft.Data.Analysis.GroupBy
Public Function GroupBy (columnName As String) As GroupBy

參數

columnName
String

用來群組唯一值的資料行

傳回

儲存群組資訊的 GroupBy 物件。

適用於

GroupBy<TKey>(String)

DataFrame 資料行中唯一值分組 的資料 columnName 列。

public Microsoft.Data.Analysis.GroupBy<TKey> GroupBy<TKey> (string columnName);
member this.GroupBy : string -> Microsoft.Data.Analysis.GroupBy<'Key>
Public Function GroupBy(Of TKey) (columnName As String) As GroupBy(Of TKey)

類型參數

TKey

用於分組的資料行類型

參數

columnName
String

用來群組唯一值的資料行

傳回

儲存群組資訊的 GroupBy 物件。

適用於