當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。