Share via


DataFrame.ToDF Method

Definition

Overloads

ToDF()

Converts this strongly typed collection of data to generic DataFrame.

ToDF(String[])

Converts this strongly typed collection of data to generic DataFrame with columns renamed.

ToDF()

Converts this strongly typed collection of data to generic DataFrame.

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

Returns

Applies to

ToDF(String[])

Converts this strongly typed collection of data to generic DataFrame with columns renamed.

public Microsoft.Spark.Sql.DataFrame ToDF (params string[] colNames);
member this.ToDF : string[] -> Microsoft.Spark.Sql.DataFrame
Public Function ToDF (ParamArray colNames As String()) As DataFrame

Parameters

colNames
String[]

Column names

Returns

DataFrame object

Applies to