> 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/all-transforms/profile_column.md).

# Profile Column

## Analyze the distinct values in a column

### Required Inputs

* Column: the column you want to profile

### Notes

* Only supports profiling one column at a time

## Parameters

| Name         | Type   | Description                    | Is Optional |
| ------------ | ------ | ------------------------------ | ----------- |
| column\_name | column | The column you want to profile |             |

## Example

```python
ds = rasgo.get.dataset(id)

ds.profile_column(column_name = 'IMPORTANTCOLUMN')
```

## Source Code

{% embed url="<https://github.com/rasgointelligence/RasgoTransforms/blob/main/rasgotransforms/rasgotransforms/transforms/profile_column/profile_column.sql>" %}
