tiledbsoma.DataFrame.change_domain¶
- DataFrame.change_domain(newdomain: Sequence[None | Tuple[Any, Any] | List[Any]], check_only: bool = False) Tuple[bool, str] ¶
Allows you to enlarge the domain of a SOMA
DataFrame
, when theDataFrame
already has a domain.The argument must be a tuple of pairs of low/high values for the desired domain, one pair per index column. For string index columns, you must offer the low/high pair as (“”, “”), or as
None
. Ifcheck_only
isTrue
, returns whether the operation would succeed if attempted, and a reason why it would not.For example, suppose the dataframe’s sole index-column name is
"soma_joinid"
(which is the default at create). If the dataframe’s.maxdomain
is((0, 999999),)
and its.domain
is((0, 2899),)
, this means thatsoma_joinid
values between 0 and 2899 can be read or written; any attempt to read or writesoma_joinid
values outside this range will result in an error. If you then apply.change_domain([(0, 5700)])
, then.domain
will report((0, 5699),)
, and nowsoma_joinid
values in the range 0 to 5699 can now be written to the dataframe.If you use non-default
index_column_names
in the dataframe’screate
then you need to specify the (low, high) pairs for each index column. For example, if the dataframe’sindex_column_names
is["soma_joinid", "cell_type"]
, then you can upgrade domain using[(0, 5699), ("", "")]
.Lastly, it is an error to try to set the
domain
to be smaller thanmaxdomain
along any index column. Themaxdomain
of a dataframe is set at creation time, and cannot be extended afterward.Lifecycle
Maturing.