다음을 통해 공유


DataFrameNaFunctions.Drop 메서드

정의

오버로드

Drop()

null 또는 NaN 값이 포함된 행을 삭제하는 새 DataFrame 를 반환합니다.

Drop(IEnumerable<String>)

지정된 열에 null 또는 NaN 값이 포함된 행을 삭제하는 새 DataFrame 를 반환합니다.

Drop(Int32)

null이 아닌 값과 NaN이 아닌 값보다 minNonNulls 작은 행을 삭제하는 새 DataFrame 를 반환합니다.

Drop(String)

null 또는 NaN 값이 포함된 행을 삭제하는 새 DataFrame 를 반환합니다.

Drop(Int32, IEnumerable<String>)

지정된 열에서 null이 아닌 값과 NaN이 아닌 값이 minNonNulls 포함된 행을 삭제하는 새 DataFrame 를 반환합니다.

Drop(String, IEnumerable<String>)

지정된 열에 null 또는 NaN 값이 포함된 행을 삭제하는 새 DataFrame 를 반환합니다.

Drop()

null 또는 NaN 값이 포함된 행을 삭제하는 새 DataFrame 를 반환합니다.

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

반환

DataFrame 개체

적용 대상

Drop(IEnumerable<String>)

지정된 열에 null 또는 NaN 값이 포함된 행을 삭제하는 새 DataFrame 를 반환합니다.

public Microsoft.Spark.Sql.DataFrame Drop (System.Collections.Generic.IEnumerable<string> columnNames);
member this.Drop : seq<string> -> Microsoft.Spark.Sql.DataFrame
Public Function Drop (columnNames As IEnumerable(Of String)) As DataFrame

매개 변수

columnNames
IEnumerable<String>

열 이름

반환

DataFrame 개체

적용 대상

Drop(Int32)

null이 아닌 값과 NaN이 아닌 값보다 minNonNulls 작은 행을 삭제하는 새 DataFrame 를 반환합니다.

public Microsoft.Spark.Sql.DataFrame Drop (int minNonNulls);
member this.Drop : int -> Microsoft.Spark.Sql.DataFrame
Public Function Drop (minNonNulls As Integer) As DataFrame

매개 변수

minNonNulls
Int32

반환

DataFrame 개체

적용 대상

Drop(String)

null 또는 NaN 값이 포함된 행을 삭제하는 새 DataFrame 를 반환합니다.

public Microsoft.Spark.Sql.DataFrame Drop (string how);
member this.Drop : string -> Microsoft.Spark.Sql.DataFrame
Public Function Drop (how As String) As DataFrame

매개 변수

how
String

행 삭제 동작 결정

반환

DataFrame 개체

설명

'how'이 "any"이면 null 또는 NaN 값이 포함된 행을 삭제합니다. 'how'이 "all"이면 모든 열이 null이거나 해당 행의 NaN인 경우에만 행을 삭제합니다.

적용 대상

Drop(Int32, IEnumerable<String>)

지정된 열에서 null이 아닌 값과 NaN이 아닌 값이 minNonNulls 포함된 행을 삭제하는 새 DataFrame 를 반환합니다.

public Microsoft.Spark.Sql.DataFrame Drop (int minNonNulls, System.Collections.Generic.IEnumerable<string> columnNames);
member this.Drop : int * seq<string> -> Microsoft.Spark.Sql.DataFrame
Public Function Drop (minNonNulls As Integer, columnNames As IEnumerable(Of String)) As DataFrame

매개 변수

minNonNulls
Int32
columnNames
IEnumerable<String>

열 이름

반환

DataFrame 개체

적용 대상

Drop(String, IEnumerable<String>)

지정된 열에 null 또는 NaN 값이 포함된 행을 삭제하는 새 DataFrame 를 반환합니다.

public Microsoft.Spark.Sql.DataFrame Drop (string how, System.Collections.Generic.IEnumerable<string> columnNames);
member this.Drop : string * seq<string> -> Microsoft.Spark.Sql.DataFrame
Public Function Drop (how As String, columnNames As IEnumerable(Of String)) As DataFrame

매개 변수

how
String

행 삭제 동작 결정

columnNames
IEnumerable<String>

열 이름

반환

DataFrame 개체

설명

'how'이 "any"이면 null 또는 NaN 값이 포함된 행을 삭제합니다. 'how'이 "all"이면 모든 열이 null이거나 해당 행의 NaN인 경우에만 행을 삭제합니다.

적용 대상