Copy dataset

This transform allows you to make a copy of the input dataset. Any changes that are made to the original dataset are not reflected in the copy.

tags: [“Data Preparation”]

Parameters

The table gives a brief description about each parameter in Copy dataset 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. 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 returning the copy of the input dataset. (Required: True, Multiple: False)

Sample input for Copy dataset transform:

Projects/templates_docs/templates_UI_images/copydataset_input.png

The output after running the Copy dataset transform on the dataset appears as below:

../../../_images/copydataset_output.png

How to use it in Notebook

The following is the code snippet you must use in the Jupyter Notebook editor to run the Copy dataset transform:

template=TemplateV2.get_template_by('Copy dataset')

recipe_Copy_dataset= project.addRecipe([car_data, employee_data, temperature_data, only_numeric], name='Copy dataset')

transform=Transform()
transform.templateId = template.id
transform.name='Copy dataset'
transform.variables = {
'input_dataset':'car',
'output_dataset':'car_copy'}
recipe_Copy_dataset.add_transform(transform)
recipe_Copy_dataset.run()

Requirements

pandas