Transpose dataset
The transpose transform converts rows into columns and columns into rows in a dataset.
tags: [“Data Preparation”]
Parameters
This table provides a brief description about each parameter in Forward Fill transform.
- Name:
By default, the transform name is populated. You can also add a custom name for the transform.
- Input Dataset:
The file name of the input dataset on which transpose transform must be applied. You can select the dataset that was uploaded from the drop-down list. (Required: True, Multiple: False)
- Output Dataset:
The file name with which the output dataset is created after transposing columns to rows or vice versa of the input dataset. (Required: True, Multiple: False)
The sample input for this transform looks as shown in the screenshot:
The output after running the Transpose transform on the dataset appears as below:
How to use it in Notebook
The following is the code snippet you must use in the Jupyter Notebook editor to run the Transpose dataset transform:
template=TemplateV2.get_template_by('Transpose dataset')
recipe_Transpose_dataset= project.addRecipe([car_data, employee_data, temperature_data, only_numeric], name='Transpose dataset')
transform=Transform()
transform.templateId = template.id
transform.name='Transpose dataset'
transform.variables = {
'input_dataset':'car',
'output_dataset':'car_transposed'}
recipe_Transpose_dataset.add_transform(transform)
recipe_Transpose_dataset.run()
Requirements
pandas