หมายเหตุ
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลอง ลงชื่อเข้าใช้หรือเปลี่ยนไดเรกทอรีได้
การเข้าถึงหน้านี้ต้องได้รับการอนุญาต คุณสามารถลองเปลี่ยนไดเรกทอรีได้
Returns the number of set bits in the input bitmap.
Syntax
from pyspark.sql import functions as sf
sf.bitmap_count(col)
Parameters
| Parameter | Type | Description |
|---|---|---|
col |
pyspark.sql.Column or str |
The input bitmap. |
Examples
Example 1: Count set bits in a bitmap
from pyspark.sql import functions as sf
df = spark.createDataFrame([("FFFF",)], ["a"])
df.select(sf.bitmap_count(sf.to_binary(df.a, sf.lit("hex")))).show()
+-------------------------------+
|bitmap_count(to_binary(a, hex))|
+-------------------------------+
| 16|
+-------------------------------+