Note
Kailangan ng pahintulot para ma-access ang page na ito. Maaari mong subukang mag-sign in o magpalit ng mga direktoryo.
Ang pag-access sa pahinang ito ay nangangailangan ng pahintulot. Maaari mong subukang baguhin ang mga direktoryo.
Computes the inverse cosine (also known as arccosine) of the given column or expression. Supports Spark Connect.
For the corresponding Databricks SQL function, see acos function.
Syntax
from pyspark.sql import functions as dbf
dbf.acos(col=<col>)
Parameters
| Parameter | Type | Description |
|---|---|---|
col |
pyspark.sql.Column or column name |
The target column or expression to compute the inverse cosine on. |
Returns
pyspark.sql.Column: A new column object representing the inverse cosine of the input.
Examples
from pyspark.sql import functions as dbf
df = spark.createDataFrame([(-1.0,), (-0.5,), (0.0,), (0.5,), (1.0,)], ["value"])
df.select("*", dbf.acos("value")).show()
+-----+------------------+
|value| ACOS(value)|
+-----+------------------+
| -1.0| 3.141592653589...|
| -0.5|2.0943951023931...|
| 0.0|1.5707963267948...|
| 0.5|1.0471975511965...|
| 1.0| 0.0|
+-----+------------------+
from pyspark.sql import functions as dbf
spark.sql(
"SELECT * FROM VALUES (-2), (2), (NULL) AS TAB(value)"
).select("*", dbf.acos("value")).show()
+-----+-----------+
|value|ACOS(value)|
+-----+-----------+
| -2| NaN|
| 2| NaN|
| NULL| NULL|
+-----+-----------+