anndict.AdataDict.index_bool#
- AdataDict.index_bool(index_dict, inplace=True)[source]#
Index the
AdataDict
by a dictionary of indices.- Parameters:
- index_dict
dict
A
dict
with the same structure as theAdataDict
, but values are boolean.- inplace
bool
(default:True
) If
True
, modifies theAdataDict
in-place. Otherwise, returns a newAdataDict
.
- index_dict
- Return type:
None
|AdataDict
- Returns:
None
and modifies theAdataDict
in-place ifinplace=True
.New
AdataDict
object with the specified indices ifinplace=False
.