> ## Documentation Index
> Fetch the complete documentation index at: https://docs.tilebox.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Dataset.create_collection

```python theme={"system"}
def Dataset.create_collection(name: str) -> Collection
```

Create a collection in the dataset.

## Parameters

<ParamField path="name" type="string">
  The name of the collection
</ParamField>

## Returns

The created collection object.

<RequestExample>
  ```python Python theme={"system"}
  collection = dataset.create_collection("My-collection")
  ```
</RequestExample>
