> For the complete documentation index, see [llms.txt](https://docs.sdv.dev/rdt/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.sdv.dev/rdt/transformers-glossary/categorical/frequencyencoder.md).

# FrequencyEncoder

{% hint style="danger" %}
***This transformer is deprecated.*** Consider using the [UniformEncoder](/rdt/transformers-glossary/categorical/uniformencoder.md) instead.
{% endhint %}

**Compatibility:** `categorical` data

The `FrequencyEncoder` transforms data that represents unordered, categorical values into decimals in the range `[0, 1]`. This range is broken up into separate intervals for each category -- more popular categories take up larger intervals.

![](/files/asNNqEbpRZMdNbE2Nh4i)

```python
from rdt.transformers.categorical import FrequencyEncoder
fre = FrequencyEncoder()
```

## Parameters

**`add_noise`**: Add noise when transforming a category into the \[0, 1] interval.

<table data-header-hidden><thead><tr><th width="196"></th><th></th></tr></thead><tbody><tr><td>(default) <code>False</code></td><td>Do not add noise. Each time a category appears, it will always be transformed to the same value.</td></tr><tr><td><code>True</code></td><td>Add noise. A category may be transformed to different values every time it appears (but it will always stay within the interval).</td></tr></tbody></table>


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.sdv.dev/rdt/transformers-glossary/categorical/frequencyencoder.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
