Hello,
I wanted to filter my Xenium data but I have an error with the function match_sdata_to_table.
Here an reproducible example
```python
import spatialdata as spd
from spatialdata.datasets import blobs
sdata = blobs()
sub_adata = sdata.tables["table"][:10]
sub_sdata = spd.match_sdata_to_table(
sdata=sdata, table_name="table", table=sub_adata, how="right"
)
```
Return the following error :
AttributeError: module 'spatialdata' has no attribute 'match_sdata_to_table'. Did you mean: 'match_element_to_table'?
Desktop (optional):
- RedHat (8.7)
- spatialdata 0.3.0
How can I fix this ?
Thanks for your time
Best
Lea