> 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/describe.md).

# Describe

Describes the dataset using a consistent set of metrics, based on data type. Numeric: DTYPE, COUNT, NULL\_COUNT, UNIQUE\_COUNT, MOST\_FREQUENT, MEAN, STD\_DEV, MIN, \_25\_PERCENTILE, \_50\_PERCENTILE, \_75\_PERCENTILE, MAX Other: DTYPE, COUNT, NULL\_COUNT, UNIQUE\_COUNT, MOST\_FREQUENT, MIN, MAX

## Parameters

| Name | Type | Description                                | Is Optional |
| ---- | ---- | ------------------------------------------ | ----------- |
| none | none | this transform does not take any arguments |             |

## Example

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

ds.describe().to_df()
```

## Source Code

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