Tutorials References Menu

Pandas DataFrame T Property

❮ DataFrame Reference


Example

Convert the columns into rows and vice versa:

import pandas as pd

data = {
  "age": [50, 40, 30, 40, 20, 10, 30],
  "qualified": [True, False, False, False, False, True, True]
}
df = pd.DataFrame(data)

newdf = df.T
Try it Yourself »

Definition and Usage

The T property transforms the columns into rows and the rows into columns.


Syntax

dataframe.T

Parameters

Properties do not have parameters.


Return Value

A DataFrame where the columns have been rows and vice versa.


❮ DataFrame Reference