DataFrame.WithColumnRenamed(String, String) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Returns a new Dataset with a column renamed.
This is a no-op if schema doesn't contain existingName
.
public Microsoft.Spark.Sql.DataFrame WithColumnRenamed (string existingName, string newName);
member this.WithColumnRenamed : string * string -> Microsoft.Spark.Sql.DataFrame
Public Function WithColumnRenamed (existingName As String, newName As String) As DataFrame
Parameters
- existingName
- String
Existing column name
- newName
- String
New column name to replace with
Returns
DataFrame object