Functions.Pow 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.
Overloads
Pow(String, String) |
Returns the value of the first argument raised to the power of the second argument. |
Pow(String, Double) |
Returns the value of the first argument raised to the power of the second argument. |
Pow(String, Column) |
Returns the value of the first argument raised to the power of the second argument. |
Pow(Double, String) |
Returns the value of the first argument raised to the power of the second argument. |
Pow(Column, String) |
Returns the value of the first argument raised to the power of the second argument. |
Pow(Column, Double) |
Returns the value of the first argument raised to the power of the second argument. |
Pow(Column, Column) |
Returns the value of the first argument raised to the power of the second argument. |
Pow(Double, Column) |
Returns the value of the first argument raised to the power of the second argument. |
Pow(String, String)
Returns the value of the first argument raised to the power of the second argument.
public static Microsoft.Spark.Sql.Column Pow(string leftName, string rightName);
static member Pow : string * string -> Microsoft.Spark.Sql.Column
Public Shared Function Pow (leftName As String, rightName As String) As Column
Parameters
- leftName
- String
Left side column name
- rightName
- String
Right side column name
Returns
Column object
Applies to
Pow(String, Double)
Returns the value of the first argument raised to the power of the second argument.
public static Microsoft.Spark.Sql.Column Pow(string leftName, double right);
static member Pow : string * double -> Microsoft.Spark.Sql.Column
Public Shared Function Pow (leftName As String, right As Double) As Column
Parameters
- leftName
- String
Left side column name
- right
- Double
Right side value
Returns
Column object
Applies to
Pow(String, Column)
Returns the value of the first argument raised to the power of the second argument.
public static Microsoft.Spark.Sql.Column Pow(string leftName, Microsoft.Spark.Sql.Column right);
static member Pow : string * Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function Pow (leftName As String, right As Column) As Column
Parameters
- leftName
- String
Left side column name
- right
- Column
Right side column to apply
Returns
Column object
Applies to
Pow(Double, String)
Returns the value of the first argument raised to the power of the second argument.
public static Microsoft.Spark.Sql.Column Pow(double left, string rightName);
static member Pow : double * string -> Microsoft.Spark.Sql.Column
Public Shared Function Pow (left As Double, rightName As String) As Column
Parameters
- left
- Double
Left side value
- rightName
- String
Right side column name
Returns
Column object
Applies to
Pow(Column, String)
Returns the value of the first argument raised to the power of the second argument.
public static Microsoft.Spark.Sql.Column Pow(Microsoft.Spark.Sql.Column left, string rightName);
static member Pow : Microsoft.Spark.Sql.Column * string -> Microsoft.Spark.Sql.Column
Public Shared Function Pow (left As Column, rightName As String) As Column
Parameters
- left
- Column
Left side column to apply
- rightName
- String
Right side column name
Returns
Column object
Applies to
Pow(Column, Double)
Returns the value of the first argument raised to the power of the second argument.
public static Microsoft.Spark.Sql.Column Pow(Microsoft.Spark.Sql.Column left, double right);
static member Pow : Microsoft.Spark.Sql.Column * double -> Microsoft.Spark.Sql.Column
Public Shared Function Pow (left As Column, right As Double) As Column
Parameters
- left
- Column
Left side column to apply
- right
- Double
Right side value
Returns
Column object
Applies to
Pow(Column, Column)
Returns the value of the first argument raised to the power of the second argument.
public static Microsoft.Spark.Sql.Column Pow(Microsoft.Spark.Sql.Column left, Microsoft.Spark.Sql.Column right);
static member Pow : Microsoft.Spark.Sql.Column * Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function Pow (left As Column, right As Column) As Column
Parameters
- left
- Column
Left side column to apply
- right
- Column
Right side column to apply
Returns
Column object
Applies to
Pow(Double, Column)
Returns the value of the first argument raised to the power of the second argument.
public static Microsoft.Spark.Sql.Column Pow(double left, Microsoft.Spark.Sql.Column right);
static member Pow : double * Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function Pow (left As Double, right As Column) As Column
Parameters
- left
- Double
Left side value
- right
- Column
Right side column to apply
Returns
Column object