Skip to main content

Add Columns

Adding columns allows you to create new columns in your dataset. You can add columns in several ways:

  • Using Bin to take values of a numeric column and group them into bins.
  • Using Extract to extract fields from columns that contain date or time values.
  • Using Split to split columns based on a delimiter.
  • Creating a new column through
    • Concatenation
    • Conditional Values
    • Text
    • Time Deltas
    • Temporal Expressions
    • Expressions
    • Window Queries

add columns skill menu

note

When a skill is applied to a dataset:

  • If the skill creates a new dataset, it will use the convention [dataset]_[Skill].
  • If the skill alters your existing dataset, it will use the convention [dataset] v[x] to save to a new version.

Bin

You can use the Bin skill to bin values into categories like “High” or “Low”. Note that you will need to decide whether each bin should contain an equal number of records (based on percentile), an equal range of values (based on width), or use custom intervals.

To bin a column:

  1. Click Add Column > Bin in the skill menu.
  2. Select the column whose values to bin.
  3. Select and configure how the values should be binned. See Bin for more information on these options.
  4. Enter the values used to bin the column.
  5. Optionally, enter a list of names to use for the new bins.
  6. Click Submit.

bin

Extract

You can use the Extract skill to extract fields from a column that contains date or time values.

To extract a column:

  1. Click Add Column > Bin in the skill menu.
  2. Select the column from which you want to extract date parts.
  3. Select the date parts you want to extract.
  4. Enter a name for the new column.
  5. Click Submit.

extract

Split

You can use the Split skill to split a column into multiple new columns. You can split a column based on a delimiter or at a certain position, such as the second or third number in the column.

To split a column:

  1. Click Add Column > Split in the skill menu.
  2. Select the column to split.
  3. Select whether to split the values in the column based on position (such as the third character) or by a delimiter (such as a comma).
  4. Enter the position or delimiter to split by.
  5. Optionally, enter a comma-separated list of labels to use for the new columns.
  6. Click Submit.

split

Create a New Column

To create a new column, click Add Column in the skill menu, then select the method with which to create the column:

Choose from among five methods:

  1. Enter a name for the new column.
  2. Choose either column or text to concatenate. Each element is concatenated to generate the column value.
  3. Add or subtract elements to adjust the column value. At least one element must be specified.
  4. Optionally, choose a delimiter.
  5. Click Submit.

create column

Feedback