Skip to content

Commit

Permalink
List all the keyword arguments for from_numpy function
Browse files Browse the repository at this point in the history
  • Loading branch information
kounelisagis committed Apr 3, 2024
1 parent 292c811 commit 0ff519e
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions tiledb/highlevel.py
Original file line number Diff line number Diff line change
Expand Up @@ -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:**
Expand Down

0 comments on commit 0ff519e

Please sign in to comment.