Functions.Bround Method

Definition

Overloads

Bround(Column)

Returns the value of the column rounded to 0 decimal places with HALF_EVEN round mode.

Bround(Column, Int32)

Returns the value of the column rounded to scale decimal places with HALF_EVEN round mode.

Bround(Column)

Returns the value of the column rounded to 0 decimal places with HALF_EVEN round mode.

public static Microsoft.Spark.Sql.Column Bround (Microsoft.Spark.Sql.Column column);
static member Bround : Microsoft.Spark.Sql.Column -> Microsoft.Spark.Sql.Column
Public Shared Function Bround (column As Column) As Column

Parameters

column
Column

Column to apply

Returns

Column object

Applies to

Bround(Column, Int32)

Returns the value of the column rounded to scale decimal places with HALF_EVEN round mode.

public static Microsoft.Spark.Sql.Column Bround (Microsoft.Spark.Sql.Column column, int scale);
static member Bround : Microsoft.Spark.Sql.Column * int -> Microsoft.Spark.Sql.Column
Public Shared Function Bround (column As Column, scale As Integer) As Column

Parameters

column
Column

Column to apply

scale
Int32

Scale factor

Returns

Column object

Applies to