# 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()
```
