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


Python dask.array.from_tiledb用法及代碼示例


用法:

dask.array.from_tiledb(uri, attribute=None, chunks=None, storage_options=None, **kwargs)

從 TileDB 存儲格式加載數組

有關 TileDB 的更多信息,請參閱https://docs.tiledb.io

參數

uri: TileDB array or str

保存數據的位置

attribute: str or None

屬性選擇(multi-attribute 數組上的single-attribute 視圖)

返回

一個暗陣列

例子

>>> import tempfile, tiledb
>>> import dask.array as da, numpy as np
>>> uri = tempfile.NamedTemporaryFile().name
>>> _ = tiledb.from_numpy(uri, np.arange(0,9).reshape(3,3))  # create a tiledb array
>>> tdb_ar = da.from_tiledb(uri)  # read back the array
>>> tdb_ar.shape
(3, 3)
>>> tdb_ar.mean().compute()
4.0

相關用法


注:本文由純淨天空篩選整理自dask.org大神的英文原創作品 dask.array.from_tiledb。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。