tiledbsoma.SparseNDArray.write

SparseNDArray.write(values: SparseCOOTensor | SparseCSRMatrix | SparseCSCMatrix | Table, *, platform_config: Dict[str, Mapping[str, Any]] | object | None = None) Self

Writes an Arrow object to the SparseNDArray.

Arrow SparseTensor: the coordinates in the Arrow SparseTensor are interpreted as the coordinates to write to. Supports the _experimental_ SparseCOOTensor, SparseCSRMatrix and SparseCSCMatrix. There is currently no support for Arrow SparseCSFTensor or dense Tensor.

Arrow table: write a COO table, with columns named soma_dim_0, …, soma_dim_N and soma_data to the dense nD array.

Raises:
  • TypeError – If the values parameter is an unsupported type.

  • SOMAError – If the object is not open for writing.

Lifecycle

Maturing.