DataFrame.DropDuplicates メソッド

定義

オーバーロード

DropDuplicates(String, String[])

列のサブセットのみを考慮して、重複する行が削除された新しい DataFrame を返します。

DropDuplicates()

この DataFrameから一意の行のみを含む新しい DataFrame を返します。 これは Distinct() のエイリアスです。

DropDuplicates(String, String[])

列のサブセットのみを考慮して、重複する行が削除された新しい DataFrame を返します。

public Microsoft.Spark.Sql.DataFrame DropDuplicates (string col, params string[] cols);
member this.DropDuplicates : string * string[] -> Microsoft.Spark.Sql.DataFrame
Public Function DropDuplicates (col As String, ParamArray cols As String()) As DataFrame

パラメーター

col
String

列名

cols
String[]

追加の列名

戻り値

DataFrame オブジェクト

適用対象

DropDuplicates()

この DataFrameから一意の行のみを含む新しい DataFrame を返します。 これは Distinct() のエイリアスです。

public Microsoft.Spark.Sql.DataFrame DropDuplicates ();
member this.DropDuplicates : unit -> Microsoft.Spark.Sql.DataFrame
Public Function DropDuplicates () As DataFrame

戻り値

適用対象