> 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/usage/hypertransformer/preparation.md).

# Preparation

## Creating a HyperTransformer

Use a HyperTransformer to manage all the transformers you're applying to a multi-column dataset.&#x20;

Create one by importing it from the `rdt` library. There are no parameters.

```python
from rdt import HyperTransformer
ht = HyperTransformer()
```

## Loading your data

The RDT library uses pandas -- a popular open source library for data manipulation. The HyperTransformer expects your data is a [pandas DataFrame](https://pandas.pydata.org/docs/reference/api/pandas.DataFrame.html) object.&#x20;

There are a variety of ways to load your data into the expected format. The most common case is your dataset being a csv file:

```python
import pandas as pd
customers = pd.read_csv('./datasets/customers.csv')
```

Refer to the pandas documentation for more information about [reading csv files](https://pandas.pydata.org/docs/reference/api/pandas.read_csv.html) or [other types of files](https://pandas.pydata.org/docs/reference/io.html).


---

# 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/usage/hypertransformer/preparation.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.
