From 0ff519ecf9245716d70c3503079e7051b8084ae6 Mon Sep 17 00:00:00 2001 From: Agis Kounelis Date: Wed, 3 Apr 2024 22:06:12 +0300 Subject: [PATCH] List all the keyword arguments for from_numpy function --- tiledb/highlevel.py | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/tiledb/highlevel.py b/tiledb/highlevel.py index cc6915c0f9..226f6271ab 100644 --- a/tiledb/highlevel.py +++ b/tiledb/highlevel.py @@ -89,6 +89,19 @@ def from_numpy(uri, array, config=None, ctx=None, **kwargs): * **append_dim** - The dimension along which the Numpy array is append (default: 0). * **start_idx** - The starting index to append to. By default, append to the end of the existing data. * **timestamp** - Write TileDB array at specific timestamp. + * **tile** - Tile extent for each dimension + * **dim_dtype** - Dimension data type (default: np.uint64) + * **attr_name** - Attribute name for the single attribute (default: "") + * **capacity** - Tile cell capacity + * **cell_order** - TileDB label for cell layout + * **tile_order** - TileDB label for tile layout + * **offsets_filters** - Offsets filter list (default: None) + * **validity_filters** - Validity filter list (default: None) + * **allows_duplicates** - True if duplicates are allowed + * **sparse** - True if schema is sparse, else False + * **dim_labels** - dict(dim_index, dict(dim_name, tiledb.DimSchema) + * **dtypestr** - Data-type of returned array + * **likearray_like** - Reference object to allow the creation of arrays which are not NumPy arrays **Example:**