Skip to content

Create project

Prepare project using the final dataset.

Usage


The following are the step's expected inputs and outputs and their specific types.

Step signature
create_project(ds: dataset)

where the object {"param": value} is optional in most cases and if present may contain any of the parameters described in the corresponding section below.

Example

You can subset the columns to be included in the project in two ways. To explicitly include the columns you want to preserve using a list of their names:

Example call (in recipe editor)
create_project(ds[["column_1", "keep_column_2"]])
More examples

Alternatively, explicitly exclude columns you are not interested in, using the negation "!":

Example call (in recipe editor)
create_project(ds[!["column_3", "column_4"]])

Inputs


ds: dataset

A dataset containing the columns to be included in the project visualization.