DataFrameNaFunctions.Replace 메서드

정의

오버로드

Replace(IEnumerable<String>, IDictionary<Boolean,Boolean>)

맵의 replacement 키와 일치하는 값을 해당 값으로 바꿉니다.

Replace(IEnumerable<String>, IDictionary<Double,Double>)

맵의 replacement 키와 일치하는 값을 해당 값으로 바꿉니다.

Replace(IEnumerable<String>, IDictionary<String,String>)

맵의 replacement 키와 일치하는 값을 해당 값으로 바꿉니다.

Replace(String, IDictionary<Boolean,Boolean>)

맵의 replacement 키와 일치하는 값을 해당 값으로 바꿉니다.

Replace(String, IDictionary<Double,Double>)

맵의 replacement 키와 일치하는 값을 해당 값으로 바꿉니다.

Replace(String, IDictionary<String,String>)

맵의 replacement 키와 일치하는 값을 해당 값으로 바꿉니다.

Replace(IEnumerable<String>, IDictionary<Boolean,Boolean>)

맵의 replacement 키와 일치하는 값을 해당 값으로 바꿉니다.

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

매개 변수

columnNames
IEnumerable<String>

값 바꾸기를 적용할 열 목록입니다.

replacement
IDictionary<Boolean,Boolean>

대체 값을 저장하는 맵

반환

DataFrame 개체

적용 대상

Replace(IEnumerable<String>, IDictionary<Double,Double>)

맵의 replacement 키와 일치하는 값을 해당 값으로 바꿉니다.

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

매개 변수

columnNames
IEnumerable<String>

값 바꾸기를 적용할 열의 이름입니다. 가 "*"인 경우 col 모든 문자열, 숫자 또는 부울 열에 대체가 적용됩니다.

replacement
IDictionary<Double,Double>

대체 값을 저장하는 맵

반환

DataFrame 개체

적용 대상

Replace(IEnumerable<String>, IDictionary<String,String>)

맵의 replacement 키와 일치하는 값을 해당 값으로 바꿉니다.

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

매개 변수

columnNames
IEnumerable<String>

값 바꾸기를 적용할 열 목록입니다.

replacement
IDictionary<String,String>

대체 값을 저장하는 맵

반환

DataFrame 개체

적용 대상

Replace(String, IDictionary<Boolean,Boolean>)

맵의 replacement 키와 일치하는 값을 해당 값으로 바꿉니다.

public Microsoft.Spark.Sql.DataFrame Replace(string columnName, System.Collections.Generic.IDictionary<bool,bool> replacement);
member this.Replace : string * System.Collections.Generic.IDictionary<bool, bool> -> Microsoft.Spark.Sql.DataFrame
Public Function Replace (columnName As String, replacement As IDictionary(Of Boolean, Boolean)) As DataFrame

매개 변수

columnName
String

값 바꾸기를 적용할 열의 이름입니다. 가 "*"인 경우 col 모든 문자열, 숫자 또는 부울 열에 대체가 적용됩니다.

replacement
IDictionary<Boolean,Boolean>

대체 값을 저장하는 맵

반환

DataFrame 개체

적용 대상

Replace(String, IDictionary<Double,Double>)

맵의 replacement 키와 일치하는 값을 해당 값으로 바꿉니다.

public Microsoft.Spark.Sql.DataFrame Replace(string columnName, System.Collections.Generic.IDictionary<double,double> replacement);
member this.Replace : string * System.Collections.Generic.IDictionary<double, double> -> Microsoft.Spark.Sql.DataFrame
Public Function Replace (columnName As String, replacement As IDictionary(Of Double, Double)) As DataFrame

매개 변수

columnName
String

값 바꾸기를 적용할 열의 이름입니다. 가 "*"인 경우 col 모든 문자열, 숫자 또는 부울 열에 대체가 적용됩니다.

replacement
IDictionary<Double,Double>

대체 값을 저장하는 맵

반환

DataFrame 개체

적용 대상

Replace(String, IDictionary<String,String>)

맵의 replacement 키와 일치하는 값을 해당 값으로 바꿉니다.

public Microsoft.Spark.Sql.DataFrame Replace(string columnName, System.Collections.Generic.IDictionary<string,string> replacement);
member this.Replace : string * System.Collections.Generic.IDictionary<string, string> -> Microsoft.Spark.Sql.DataFrame
Public Function Replace (columnName As String, replacement As IDictionary(Of String, String)) As DataFrame

매개 변수

columnName
String

값 바꾸기를 적용할 열의 이름입니다. 가 "*"인 경우 col 모든 문자열, 숫자 또는 부울 열에 대체가 적용됩니다.

replacement
IDictionary<String,String>

대체 값을 저장하는 맵

반환

DataFrame 개체

적용 대상