Share via


Functions.Log10 Method

Definition

Overloads

Log10(String)

Computes the logarithm of the given value in base 10.

Log10(Column)

Computes the logarithm of the given value in base 10.

Log10(String)

Computes the logarithm of the given value in base 10.

public static Microsoft.Spark.Sql.Column Log10 (string columnName);
static member Log10 : string -> Microsoft.Spark.Sql.Column
Public Shared Function Log10 (columnName As String) As Column

Parameters

columnName
String

Column name

Returns

Column object

Applies to

Log10(Column)

Computes the logarithm of the given value in base 10.

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

Parameters

column
Column

Column to apply

Returns

Column object

Applies to