Akkio Docs
  • Akkio Documentation
    • Akkio FAQ
  • Account and Settings
    • Team Settings
    • Organization Settings
    • Account Settings
    • Role Based Access Control
  • Demo Models
    • Demo Models
      • Lead Scoring
      • Retail Sales Forecasting
      • Predict Credit Card Fraud
      • Identify Customer Churn
  • Setting up Integrations
    • Connecting Data
    • Airtable (Beta)
    • Google Ads (Beta)
    • Google Analytics 4 (Beta)
    • Google BigQuery
    • Google BigQuery (Service Account)
    • Google Sheets
    • HubSpot (Beta)
    • MariaDB (Beta)
    • MongoDB (Beta)
    • MySQL (Beta)
    • PostgreSQL (Beta)
    • Redshift (Beta)
    • Salesforce
    • Akkio Data Chat for Slack
    • Snowflake (Username / Password) (Beta)
    • Zapier
  • Prepare your Data
    • Prepare
      • Chat Data Prep
      • Clean
      • Merge & Fuzzy Merge
      • Table View
      • Pivot View
      • Deploying Chat Data Prep
  • Explore
    • Chat Explore
    • Chart Types
  • Building a Model
    • Predict
      • Insights Report - Classification
      • Insights Report - Regression
    • Forecasting
      • Insights Report - Forecasting
    • Model Types
  • Deploying a Model
    • Deploy
      • Google BigQuery
      • Google Sheets
      • HubSpot (Beta)
      • PostgreSQL (Beta)
      • Salesforce
      • Snowflake (Beta)
      • Web App
      • Zapier
  • REPORTING AND SHARING
    • Reports
    • Dashboards
  • REST API
    • API Introduction
      • Quickstart
    • API Options
      • cURL Commands
      • Python Library
      • Node.js Library
    • API FAQ
  • Rest API (v2)
    • Documentation
Powered by GitBook
On this page

Was this helpful?

  1. Akkio Documentation
  2. Prompt Library

Data Adjustment

Exclude specific rows of data. Populate or change the data of existing columns. Change data formats.

Last updated 9 months ago

Was this helpful?

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

Exclude Data

Remove specific rows of data.

Example Prompt: Filter for Retargeting.

AI Interpretation: The transform filters the dataset to only include rows where the 'Campaign Type' column is equal to 'Retargeting'.

Example Prompt: Remove rows where Views is less than 200.

AI Interpretation: The transform filters the dataset by keeping only the rows where the 'Views' column has a value greater than or equal to 200.

Example Prompt: Remove all empty values.

AI Interpretation: The transform function removes any rows from the dataset that contain missing values.

Tips:

  • Consider if it would be more effective to remove rows or columns from your dataset.

  • The function, in the top right corner of Prepare, offers pre-configured options for removing redundant or unnecessary data.

Populate/ Add Data

Fill empty data points.

Example Prompt: Populate Click Through Rate by dividing Clicks by impressions and multiplying by 100.

AI Interpretation: Calculate the click through rate by dividing the number of clicks by the number of impressions, and then multiplying by 100.

Example Prompt: Replace all empty values with "other".

AI Interpretation: The transform function replaces missing values in the dataset with the string "other".

Tips:

  • Note the column type (number, category, ect.) before adding data. You can change the column type at any time.

  • Specify the column to populate. Otherwise, Akkio may fill all blank values throughout the dataset.

Change and Format Data

Change and edit specific data.

Example Prompt: Round ROAS values to the nearest whole number.

AI Interpretation: The transform function rounds the values in the 'ROAS' column to the nearest whole number and converts them to integers.

Example Prompt: Categorize the Views column, where <300 is low, 300-700 is medium, and >700 is high.

AI Interpretation: Transform the 'Views' column in the dataset by converting the values to numeric, categorizing them into three bins ('low', 'medium', 'high') based on their magnitude, and assigning the corresponding label to each value.

Example Prompt: Change Date columns to date time format.

AI Interpretation: The transform function converts specific columns in a dataset to datetime format. It ensures that the columns containing dates are correctly recognized as datetime objects, allowing for easier manipulation and analysis of the data.

Tips:

  • Categorize numerical columns/ variables by specifying the ends of each category.

Clean