当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


Python dask.array.append用法及代码示例


用法:

dask.array.append(arr, values, axis=None)

将值附加到数组的末尾。

此文档字符串是从 numpy.append 复制的。

可能存在与 Dask 版本的一些不一致之处。

参数

arrarray_like

值将附加到此数组的副本中。

valuesarray_like

这些值附加到 arr 的副本中。它必须具有正确的形状(与 arr 相同的形状,不包括 axis )。如果不指定axis,则values可以是任意形状,使用前会被展平。

axis整数,可选

附加values 的轴。如果没有给出axis,则arrvalues在使用前都会被展平。

返回

appendndarray

arr 的副本,其中 values 附加到 axis 。请注意,append 不会就地发生:分配并填充一个新数组。如果 axis 为 None,则 out 是扁平数组。

例子

>>> np.append([1, 2, 3], [[4, 5, 6], [7, 8, 9]])  
array([1, 2, 3, ..., 7, 8, 9])

当指定axis 时,values 必须具有正确的形状。

>>> np.append([[1, 2, 3], [4, 5, 6]], [[7, 8, 9]], axis=0)  
array([[1, 2, 3],
       [4, 5, 6],
       [7, 8, 9]])
>>> np.append([[1, 2, 3], [4, 5, 6]], [7, 8, 9], axis=0)  
Traceback (most recent call last):
    ...
ValueError: all the input arrays must have same number of dimensions, but
the array at index 0 has 2 dimension(s) and the array at index 1 has 1
dimension(s)

相关用法


注:本文由纯净天空筛选整理自dask.org大神的英文原创作品 dask.array.append。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。