# Unpivot

The Unpivot step allows to to transform columns into rows. It is the reverse operation of a `pivot` step.

Unpivoting columns into a unique column means that every unpivoted column header will be used as a label in the output unique column. The columns get unpivoted “around” fixed columns that you can specify. The step creates two new columns: a `variable` column where you can find the labels corresponding to the unpivoted columns headers, and a `value` column where you can find the value for every label.

### Step parameters

* `Keep columns...`: the columns to remain fixed, around which the unpivot will occur
* `Unpivot columns...`: the columns to be unpivoted
* `Drop null values...`: whether to drop rows if their value is null in the output `value` column

### Example

**Input**

<figure><img src="/files/tkYrkHSb8waDhj8qj4GN" alt=""><figcaption><p>Reshape - unpivot - input</p></figcaption></figure>

**Configuration**

```json
{
    "keep": ["COMPANY", "COUNTRY"],
    "unpivot": ["NB_CLENTS", "REVENUES"],
    "dropna": true
}
```

**Output**

<figure><img src="/files/urPEIwcVzN2GwFzwkUZu" alt=""><figcaption><p>Reshape - unpivot - output</p></figcaption></figure>


---

# Agent Instructions: 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:

```
GET https://docs-v3.toucantoco.com/data-management-in-datahub/datasets-in-toucan/preparing-data/overview-of-youprep-tm/reshape/unpivot.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
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.
