注: 以下の翻訳の正確性は検証されていません。AIPを利用して英語版の原文から機械的に翻訳されたものです。
Copied!1 2
# pyspark.sqlモジュールからfunctionsをFという名前でインポート from pyspark.sql import functions as F
F.bround(x, scale=0)
scale >= 0
の場合は、HALF_EVEN
丸めモードを使用して、列 x の指定された値を scale 小数点まで丸めます。scale < 0
の場合は、整数部分で丸めます。F.ceil(x)
F.round(column, scale=0)
F.floor(column)
F.log(arg1, arg2=None)
F.log10(column)
F.log1p(column)
F.rand(seed=None)
F.randn(seed=None)
F.cos(x)
F.sin(x)
F.tan(x)
F.acos(x)
[0.0, π]
です。
cos-1(x)F.asin(x)
[-π/2, π/2]
です。
sin-1(x)F.atan(x)
F.atan2(x, y)
(x, y)
から極座標 (r, theta)
への変換から、角度 theta を返します。F.cosh(x)
F.sinh(x)
F.tanh(x)
F.degrees(column)
F.radians(column)
F.abs(x)
x
の絶対値F.cbrt(x)
F.exp(x)
F.expm1(x)
F.factorial(x)
F.greatest(*cols)
F.hypot(x, y)
F.least(*cols)
F.pow(x, y)
x
を y
乗した値F.rint(column)
F.signum(column)
F.sqrt(column)