> 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.preview.md).

# collection.preview()

### Parameters

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

### Return Object

pandas DataFrame

### Sample Usage

View the first 10 rows of your collection in a pandas dataframe

```python
# Preview your collection in a pandas DataFrame
collection_id = 101
my_collection = get.collection(collection_id)
my_collection.preview()
```
