snowflake.snowpark.functions.cbrt¶ snowflake.snowpark.functions.cbrt(e: Union[Column, str]) → Column[source]¶ Returns the cube root of value in a column. Example: CopyExpand>>> df = session.create_dataframe([0, 2, -10, None], schema=["x"]) >>> df.select(cbrt("x").alias("cbrt_x")).collect() [Row(CBRT_X=0.0), Row(CBRT_X=1.2599210498948734), Row(CBRT_X=-2.1544346900318834), Row(CBRT_X=None)] Show lessSee moreScroll to top