Column Adjustment

Adjust column type and location. Add or remove new columns.

Column adjustment will be done in the Prepare tab. All examples on this page utilize the Chat Data Prep function.

Move Column

Move columns left or right.

Example Prompt: Move the Spend column 2 columns to the right.

AI Interpretation: Reorder the columns in the dataset so that the 'Spend' column is moved two positions to the right.

Example Prompt: Move the Spend column to the left of the Clicks column.

AI Interpretation: Reorder the columns in the dataset so that the 'Spend' column appears before the 'Clicks' column.

Example Prompt: Swap the Spend and Views columns locations.

AI Interpretation: The transform swaps the positions of the 'Spend' and 'Views' columns in the dataset.

Tips:

  • Specify as close to exact column name as possible.

  • Specify exact location to move the column. Prompt "to the right of" rather than "next to."

  • Enter either the number of spaces to move, or, the column name to be moved next to.

Add New Column

Add a new column.

Example Prompt: Add a column for Conversions per View.

AI Interpretation: The transform calculates the ratio of conversions to views for each row in the dataset and adds a new column called "Conversions_per_View" with the calculated values.

Example Prompt: Add a new column called ROAS.

AI Interpretation: The transform function adds a new column called "ROAS" to the dataset. The column is initially empty and has a data type of float.

Tips:

  • Columns can be created as a function of other columns (sum, subtract, div, ect.).

  • If you are trying to produce a column from existing columns in the dataset, specify how in your prompt.

  • Use exact column names when combining columns to avoid error.

  • Akkio will look for ways to fill the data of your column. If it can not determine the best way to do so, Akkio will leave rows blank.

    • You can delete or change the data for your new column at any time.

Remove Column

Remove columns from your dataset.

Example Prompt: Remove the column Ad Type.

AI Interpretation: Remove the "Ad Type" column from the dataset.

Example Prompt: Remove majority blank columns.

AI Interpretation: The transform function removes columns from the dataset that have more than 50% missing values.

Example Prompt: Remove constant columns.

AI Interpretation: The transform function removes columns from a dataset that have only one unique value.

Tips:

  • Akkio can remove specific columns or a type of column specified.

  • When removing a group of columns next to each other, specify "between and including" along with the names of the end columns.

  • You can specify percentages such as "Remove 90% blank columns" when cleaning.

  • The Clean function at the top right of Prepare has many pre-made data cleaning operations. Such as removal of blank and unreadable columns.

Rename Column

Rename column headers.

Example Prompt: Rename Placement to Attribution.

AI Interpretation: Rename the column "Placement" to "Attribution" in the given dataset.

Example Prompt: Rename CPM, CPC, CTR, CPA, and ROAS.

AI Interpretation: Rename the columns in the dataset to match the specified names.

Tips:

  • Akkio's LLM is optimized for marketing agencies and their clients. Common marketing acronyms can be expanded upon in Prepare or Explore.

  • After changing a column name, future prompts should refer to the new column name.

Last updated