计算函数#

Arrow 支持对可能具有不同类型的输入执行逻辑计算操作。

标准计算操作由

>>> import pyarrow as pa
>>> import pyarrow.compute as pc
>>> a = pa.array([1, 1, 2, 3])
>>> pc.sum(a)
<pyarrow.Int64Scalar: 7>

分组聚合函数会引发异常,需要通过 pyarrow.Table.group_by() 功能来使用。更多详情请参阅 分组聚合

标准计算函数#

许多计算函数支持数组(分块或不分块)和标量输入,但有些函数会强制要求其中一种。例如,sort_indices 要求其第一个也是唯一的输入是数组。

以下是一些简单的示例

>>> import pyarrow as pa
>>> import pyarrow.compute as pc
>>> a = pa.array([1, 1, 2, 3])
>>> b = pa.array([4, 1, 2, 8])
>>> pc.equal(a, b)
<pyarrow.lib.BooleanArray object at 0x7f686e4eef30>
[
  false,
  true,
  true,
  false
]
>>> x, y = pa.scalar(7.8), pa.scalar(9.3)
>>> pc.multiply(x, y)
<pyarrow.DoubleScalar: 72.54>

这些函数不仅可以执行逐元素操作。这是一个对表格进行排序的示例

>>> import pyarrow as pa
>>> import pyarrow.compute as pc
>>> t = pa.table({'x':[1,2,3],'y':[3,2,1]})
>>> i = pc.sort_indices(t, sort_keys=[('y', 'ascending')])
>>> i
<pyarrow.lib.UInt64Array object at 0x7fcee5df75e8>
[
  2,
  1,
  0
]

有关 PyArrow 提供的计算函数的完整列表,您可以参考 计算函数 参考。

分组聚合#

PyArrow 通过 pyarrow.Table.group_by() 方法支持对 pyarrow.Table 进行分组聚合。该方法将返回一个分组声明,可以对其应用哈希聚合函数

>>> import pyarrow as pa
>>> t = pa.table([
...       pa.array(["a", "a", "b", "b", "c"]),
...       pa.array([1, 2, 3, 4, 5]),
... ], names=["keys", "values"])
>>> t.group_by("keys").aggregate([("values", "sum")])
pyarrow.Table
values_sum: int64
keys: string
----
values_sum: [[3,7,5]]
keys: [["a","b","c"]]

上一个示例中传递给 aggregate 方法的 "sum" 聚合是 hash_sum 计算函数。

可以通过将多个聚合提供给 aggregate 方法来同时执行多个聚合

>>> import pyarrow as pa
>>> t = pa.table([
...       pa.array(["a", "a", "b", "b", "c"]),
...       pa.array([1, 2, 3, 4, 5]),
... ], names=["keys", "values"])
>>> t.group_by("keys").aggregate([
...    ("values", "sum"),
...    ("keys", "count")
... ])
pyarrow.Table
values_sum: int64
keys_count: int64
keys: string
----
values_sum: [[3,7,5]]
keys_count: [[2,2,1]]
keys: [["a","b","c"]]

还可以为每个聚合函数提供聚合选项,例如,我们可以使用 CountOptions 来更改我们计算空值的方式

>>> import pyarrow as pa
>>> import pyarrow.compute as pc
>>> table_with_nulls = pa.table([
...    pa.array(["a", "a", "a"]),
...    pa.array([1, None, None])
... ], names=["keys", "values"])
>>> table_with_nulls.group_by(["keys"]).aggregate([
...    ("values", "count", pc.CountOptions(mode="all"))
... ])
pyarrow.Table
values_count: int64
keys: string
----
values_count: [[3]]
keys: [["a"]]
>>> table_with_nulls.group_by(["keys"]).aggregate([
...    ("values", "count", pc.CountOptions(mode="only_valid"))
... ])
pyarrow.Table
values_count: int64
keys: string
----
values_count: [[1]]
keys: [["a"]]

以下是所有受支持的分组聚合函数的列表。 您可以使用它们,带或不带 "hash_" 前缀。

hash_all

是否每个组中的所有元素都评估为 true

ScalarAggregateOptions

hash_any

是否每个组中的任何元素评估为 true

ScalarAggregateOptions

hash_approximate_median

计算每个组中值的近似中位数

ScalarAggregateOptions

hash_count

计算每个组中空值/非空值的数量

CountOptions

hash_count_all

计算每个组中的行数

hash_count_distinct

计算每个组中的不同值的数量

CountOptions

hash_distinct

保留每个组中的不同值

CountOptions

hash_first

计算每个组中的第一个值

ScalarAggregateOptions

hash_first_last

计算每个组中值的第一个和最后一个

ScalarAggregateOptions

hash_last

计算每个组中的第一个值

ScalarAggregateOptions

hash_list

列出每个组中的所有值

hash_max

计算每个组中值的最小值或最大值

ScalarAggregateOptions

hash_mean

计算每个组中值的平均值

ScalarAggregateOptions

hash_min

计算每个组中值的最小值或最大值

ScalarAggregateOptions

hash_min_max

计算每个组中值的最小值和最大值

ScalarAggregateOptions

hash_one

从每个组获取一个值

hash_product

计算每个组中值的乘积

ScalarAggregateOptions

hash_stddev

计算每个组中值的标准差

hash_sum

对每个组中的值求和

ScalarAggregateOptions

hash_tdigest

计算每个组中值的近似分位数

TDigestOptions

hash_variance

计算每个组中值的方差

表格和数据集连接#

TableDataset 都通过 Table.join()Dataset.join() 方法支持连接操作。

这些方法接受一个右侧表格或数据集,该表格或数据集将与初始表格或数据集连接,以及一个或多个键,应使用这些键从两个实体执行连接。

默认情况下,执行 连接,但可以请求任何受支持的连接类型

  • 左半连接

  • 右半连接

  • 左反连接

  • 右反连接

  • 内连接

  • 左外连接

  • 右外连接

  • 全外连接

只需提供一个表格和一个应该在其上执行连接的键,即可执行基本连接

import pyarrow as pa

table1 = pa.table({'id': [1, 2, 3],
                   'year': [2020, 2022, 2019]})

table2 = pa.table({'id': [3, 4],
                   'n_legs': [5, 100],
                   'animal': ["Brittle stars", "Centipede"]})

joined_table = table1.join(table2, keys="id")

结果将是一个新表格,该表格是通过使用 连接id 键上连接 table1table2 而创建的

pyarrow.Table
id: int64
year: int64
n_legs: int64
animal: string
----
id: [[3,1,2]]
year: [[2019,2020,2022]]
n_legs: [[5,null,null]]
animal: [["Brittle stars",null,null]]

我们可以执行其他类型的连接,例如通过将它们传递给 join_type 参数来执行 连接

table1.join(table2, keys='id', join_type="full outer")

在这种情况下,结果将是

pyarrow.Table
id: int64
year: int64
n_legs: int64
animal: string
----
id: [[3,1,2,4]]
year: [[2019,2020,2022,null]]
n_legs: [[5,null,null,100]]
animal: [["Brittle stars",null,null,"Centipede"]]

还可以提供其他连接键,以便连接在两个键上而不是一个键上发生。例如,我们可以在 table2 中添加一个 year 列,以便我们可以连接 ('id', 'year')

table2_withyear = table2.append_column("year", pa.array([2019, 2022]))
table1.join(table2_withyear, keys=["id", "year"])

结果将是一个表格,其中只有 id=3year=2019 的条目具有数据,其余条目将为 null

pyarrow.Table
id: int64
year: int64
animal: string
n_legs: int64
----
id: [[3,1,2]]
year: [[2019,2020,2022]]
animal: [["Brittle stars",null,null]]
n_legs: [[5,null,null]]

Dataset.join() 也提供相同的功能,因此您可以获取两个数据集并将它们连接起来

import pyarrow.dataset as ds

ds1 = ds.dataset(table1)
ds2 = ds.dataset(table2)

joined_ds = ds1.join(ds2, keys="id")

生成的数据集将是一个包含连接数据的 InMemoryDataset

>>> joined_ds.head(5)

pyarrow.Table
id: int64
year: int64
animal: string
n_legs: int64
----
id: [[3,1,2]]
year: [[2019,2020,2022]]
animal: [["Brittle stars",null,null]]
n_legs: [[5,null,null]]

按表达式过滤#

TableDataset 都可以使用布尔 Expression 进行过滤。

表达式可以从 pyarrow.compute.field() 开始构建。然后可以将比较和转换应用于一个或多个字段,以构建您关心的过滤器表达式。

大多数 计算函数 可以用于对 field 执行转换。

例如,我们可以构建一个过滤器,以查找 "nums" 列中所有偶数的行

import pyarrow.compute as pc
even_filter = (pc.bit_wise_and(pc.field("nums"), pc.scalar(1)) == pc.scalar(0))

注意

过滤器通过在数字和 1 之间执行按位与操作来查找偶数。由于 1 在二进制形式中是 00000001,因此只有最后一位设置为 1 的数字才会从 bit_wise_and 操作返回非零结果。通过这种方式,我们正在识别所有奇数。鉴于我们对偶数感兴趣,然后我们检查 bit_wise_and 操作返回的数字是否等于 0。只有最后一位为 0 的数字才会返回 num & 1 的结果 0,并且由于最后一位为 0 的所有数字都是 2 的倍数,因此我们将仅过滤偶数。

一旦我们有了过滤器,就可以将其提供给 Table.filter() 方法,以仅过滤表格中匹配的行

>>> table = pa.table({'nums': [1, 2, 3, 4, 5, 6, 7, 8, 9, 10],
...                   'chars': ["a", "b", "c", "d", "e", "f", "g", "h", "i", "l"]})
>>> table.filter(even_filter)
pyarrow.Table
nums: int64
chars: string
----
nums: [[2,4,6,8,10]]
chars: [["b","d","f","h","l"]]

可以使用 &|~ 连接多个过滤器,以执行 andornot 操作。例如,使用 ~even_filter 实际上会过滤出所有奇数。

>>> table.filter(~even_filter)
pyarrow.Table
nums: int64
chars: string
----
nums: [[1,3,5,7,9]]
chars: [["a","c","e","g","i"]]

我们可以通过将 even_filterpc.field("nums") > 5 过滤器组合起来,构建一个查找所有大于 5 的偶数的过滤器。

>>> table.filter(even_filter & (pc.field("nums") > 5))
pyarrow.Table
nums: int64
chars: string
----
nums: [[6,8,10]]
chars: [["f","h","l"]]

Dataset 同样可以使用 Dataset.filter() 方法进行过滤。该方法将返回一个 Dataset 的实例,一旦访问数据集的实际数据,就会延迟应用过滤器。

>>> dataset = ds.dataset(table)
>>> filtered = dataset.filter(pc.field("nums") < 5).filter(pc.field("nums") > 2)
>>> filtered.to_table()
pyarrow.Table
nums: int64
chars: string
----
nums: [[3,4]]
chars: [["c","d"]]

用户自定义函数#

警告

此 API 是实验性的。

PyArrow 允许定义和注册自定义计算函数。然后可以使用它们注册的函数名从 Python 以及 C++ (以及可能任何其他包装 Arrow C++ 的实现,例如 R 的 arrow 包) 调用这些函数。

UDF 支持仅限于标量函数。标量函数是对数组或标量执行逐元素操作的函数。通常,标量函数的输出不依赖于参数中值的顺序。请注意,此类函数与 SQL 表达式中使用的函数或 NumPy 通用函数大致对应。

要注册 UDF,需要定义函数名称、函数文档、输入类型和输出类型。使用 pyarrow.compute.register_scalar_function()

import numpy as np

import pyarrow as pa
import pyarrow.compute as pc

function_name = "numpy_gcd"
function_docs = {
      "summary": "Calculates the greatest common divisor",
      "description":
         "Given 'x' and 'y' find the greatest number that divides\n"
         "evenly into both x and y."
}

input_types = {
   "x" : pa.int64(),
   "y" : pa.int64()
}

output_type = pa.int64()

def to_np(val):
    if isinstance(val, pa.Scalar):
       return val.as_py()
    else:
       return np.array(val)

def gcd_numpy(ctx, x, y):
    np_x = to_np(x)
    np_y = to_np(y)
    return pa.array(np.gcd(np_x, np_y))

pc.register_scalar_function(gcd_numpy,
                           function_name,
                           function_docs,
                           input_types,
                           output_type)

用户自定义函数的实现始终采用第一个上下文参数(在上面的示例中名为 ctx),该参数是 pyarrow.compute.UdfContext 的实例。此上下文公开了几个有用的属性,特别是 memory_pool,用于在用户自定义函数的上下文中进行分配。

您可以使用 pyarrow.compute.call_function() 直接调用用户自定义函数

>>> pc.call_function("numpy_gcd", [pa.scalar(27), pa.scalar(63)])
<pyarrow.Int64Scalar: 9>
>>> pc.call_function("numpy_gcd", [pa.scalar(27), pa.array([81, 12, 5])])
<pyarrow.lib.Int64Array object at 0x7fcfa0e7b100>
[
  27,
  3,
  1
]

使用数据集#

更一般地,用户自定义函数可以在任何可以使用其名称引用计算函数的地方使用。例如,可以使用 Expression._call() 在数据集的列上调用它们。

考虑一个数据位于表中的实例,并且我们想要计算一列与标量值 30 的 GCD。我们将重用上面创建的“numpy_gcd”用户自定义函数

>>> import pyarrow.dataset as ds
>>> data_table = pa.table({'category': ['A', 'B', 'C', 'D'], 'value': [90, 630, 1827, 2709]})
>>> dataset = ds.dataset(data_table)
>>> func_args = [pc.scalar(30), ds.field("value")]
>>> dataset.to_table(
...             columns={
...                 'gcd_value': ds.field('')._call("numpy_gcd", func_args),
...                 'value': ds.field('value'),
...                 'category': ds.field('category')
...             })
pyarrow.Table
gcd_value: int64
value: int64
category: string
----
gcd_value: [[30,30,3,3]]
value: [[90,630,1827,2709]]
category: [["A","B","C","D"]]

请注意,ds.field('')._call(...) 返回一个 pyarrow.compute.Expression()。传递给此函数调用的参数是表达式,而不是标量值(请注意 pyarrow.scalar()pyarrow.compute.scalar() 之间的区别,后者产生一个表达式)。当投影运算符执行它时,将对该表达式求值。

投影表达式#

在上面的示例中,我们使用表达式向表中添加一个新列 (gcd_value)。向表中添加新的动态计算的列被称为“投影”,并且可以用于投影表达式的函数类型存在限制。投影函数必须为每个输入行发出单个输出值。该输出值应完全从输入行计算得出,并且不应依赖于任何其他行。例如,我们一直在上面用作示例的“numpy_gcd”函数是一个可以在投影中使用的有效函数。“累积和”函数将不是一个有效的函数,因为每个输入行的结果都取决于之前的行。“删除空值”函数也将无效,因为它不会为某些行发出值。