Functions.Bround 方法

定義

多載

Bround(Column)

傳回四捨五入為 0 個小數位數的值 column ,其HALF_EVEN四捨五入模式。

Bround(Column, Int32)

傳回四捨五入為 scale 小數位數的值 column ,其HALF_EVEN四捨五入模式。

Bround(Column)

傳回四捨五入為 0 個小數位數的值 column ,其HALF_EVEN四捨五入模式。

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

參數

column
Column

要套用的資料行

傳回

Column 物件

適用於

Bround(Column, Int32)

傳回四捨五入為 scale 小數位數的值 column ,其HALF_EVEN四捨五入模式。

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

參數

column
Column

要套用的資料行

scale
Int32

比例因素

傳回

Column 物件

適用於