Skip to main content
All CollectionsTransformations
Transformation: Group by
Transformation: Group by

Use the Group By transformation in Nexadata Pipelines to group and summarize data with functions like sum, count, and average.

Quin Eddy avatar
Written by Quin Eddy
Updated over a month ago

The Group By transformation in Nexadata Pipelines allows you to aggregate and summarize your data by grouping it based on specific columns. This is a powerful tool for condensing large datasets into meaningful summaries by applying various aggregation functions like sum, count, or average. You can configure the transformation using Natural Language Mode or Advanced Mode, depending on the level of control required.


Inputs for the Group By Transformation

  1. Name of the Transformation: In Natural Language Mode, the transformation is automatically named, but it can be updated in Advanced Mode. For example, if you're summarizing sales data, you might rename it to something like "Sales Summary by Region".

  2. Columns to Apply the Group By: Select the columns that will define the categories or groups for your summary. For example, you might group by columns like "Region", "Project", or "Date".

  3. Aggregation Functions: Choose an aggregation function to apply to the data within each group. Each function calculates summary statistics or metrics for the selected aggregation column.
    ​
    ​Aggregation Functions Explained:

    • Sum: Adds up all the values in the aggregation column for each group.

      • Example: Summing total sales revenue per region.

    • Count: Counts the number of records in each group.

      • Example: Counting how many transactions occurred per project.

    • Max: Returns the maximum value from the aggregation column within each group.

      • Example: Finding the highest budget allocated for each project.

    • Min: Returns the minimum value from the aggregation column within each group.

      • Example: Finding the lowest expense in each project.

    • Mean (Average): Calculates the average value of the aggregation column within each group.

      • Example: Calculating the average hours worked per project.

    • Median: Returns the median value from the aggregation column within each group (the middle value when sorted).

      • Example: Finding the median sales figure for different regions.

    • Mode: Returns the most frequent value in the aggregation column within each group.

      • Example: Identifying the most common expense category per project.

    • Standard Deviation: Measures the amount of variation in the aggregation column for each group.

      • Example: Calculating how much sales figures vary within each region.

    • Number Distinct: Counts the number of distinct or unique values in the aggregation column for each group.

      • Example: Counting how many unique products were sold in each region.
        ​

  4. Aggregation Column: This is the column where the selected aggregation function will be applied. For instance, if you're calculating the sum of sales, select the "Sales" column as the aggregation column.

  5. New Column Name: Provide a name for the new column that will store the aggregated values. For example, if you are summing sales, you might name the new column "Total Sales".


Using Natural Language Mode

In Natural Language Mode, you can configure the Group By transformation with simple instructions, and Nexadata will automatically set it up for you. The transformation name will also be generated automatically, but you can modify it later in Advanced Mode.

Example Instructions in Natural Language Mode

  • Group by the Region column and calculate the total Sales Revenue.

  • Group by the Project column and calculate the total Budget for each project.

  • Group by the Project Name column and calculate the total Hours Worked.

  • Group by the Region column and sum the Sales Revenue.

  • Group by the Project column and sum the Budget to get the total allocation per project.

Note: If Natural Language Mode doesn't fully capture your needs, you can switch to Advanced Mode to fine-tune the transformation.


Using Advanced Mode

In Advanced Mode, you have full control over how the Group By transformation is configured, allowing you to manually specify the groupings, aggregation functions, and column placements.

Steps in Advanced Mode

  1. Name of the Transformation: Start by giving the transformation a custom name, such as "Sales by Region Summary".

  2. Select the Group By Columns: Choose the columns to define the groups in your dataset, such as "Region" or "Project".

  3. Choose an Aggregation Function: Select the appropriate function (e.g., Sum, Count, Max, etc.) to summarize the data.

  4. Select the Aggregation Column: Identify the column on which the aggregation function will be applied (e.g., "Sales" for total sales revenue).

  5. Define the New Column Name: Provide a name for the output column where the aggregated values will be stored (e.g., "Total Sales" or "Total Budget").

Example in Advanced Mode

  1. Name of the Transformation: Sales Summary by Region

  2. Columns to Group By: Region

  3. Aggregation Function: Sum

  4. Aggregation Column: Sales

  5. New Column Name: Total Sales

Advanced Mode allows for a detailed configuration of how the Group By transformation is applied, ensuring that the aggregation perfectly fits your needs.


Example Use Case

Imagine you have a dataset containing "Region", "Sales", and "Product Category", and you want to find the total sales for each region:

  • Name of the Transformation: Sales Summary by Region

  • Columns to Group By: Region

  • Aggregation Function: Sum

  • Aggregation Column: Sales

  • New Column Name: Total Sales

This transformation will group your dataset by the Region column and sum the values in the Sales column for each region, creating a new column "Total Sales" that contains the aggregated data.

Additional Use Cases:

  • Sales Reporting: Group by Region and calculate the sum of sales to create a regional sales summary.

  • Customer Segmentation: Group by Customer ID and calculate the count of transactions to determine purchase frequency per customer.

  • Inventory Management: Group by Product Category and calculate the mean of stock quantities to assess average inventory levels across categories.


Summary

The Group By transformation in Nexadata Pipelines is a flexible and powerful way to aggregate and summarize data. Whether you use Natural Language Mode for quick setup or Advanced Mode for detailed control, this transformation enables you to quickly generate summarized insights from raw data, helping you make better decisions based on your dataset.

Did this answer your question?