> For the complete documentation index, see [llms.txt](https://docs.rasgoml.com/rasgo-docs/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.rasgoml.com/rasgo-docs/rasgo-0.1/pyrasgo-0.3/collections/collection.get_compatible_features.md).

# collection.get\_compatible\_features()

### Parameters

**`id`***`:int:`*`ID of Rasgo Collection to return`

### Return Object

pandas DataFrame

### Sample Usage

Get features that are compatible with an existing collection

```python
# Preview your collection in a pandas DataFrame
collection_id = 101


my_collection = get.collection(collection_id)
features = my_collection.get_compatible_features()
```
