Using Sample Data: The examples on this page use fields from our sample dataset. Download it and create an evaluation with it to follow along with this tutorial.

When to Use
Use scatter plot widgets to:- Explore correlations between two numerical metrics
- Identify outliers in multi-dimensional data
- Visualize X-Y relationships with optional bubble sizing
- Spot clusters or patterns across evaluation items
Configuration
Required Fields
Widget display name shown on the dashboard
Must be set to “scatter”
SeriesQuery selecting at least two numeric columns
X-Axis Configuration (One Required)
You must provide eitherx_column or x_column_group, but not both:
Column name for the x-axis. Must be a numeric column.Example:
"accuracy_score" - plots accuracy on the x-axisArray of column names for multi-dimensional grouping on the x-axis.Example:
["agent_name", "accuracy_score"]Query Requirements
Scatter plot widgets require a SeriesQuery with:- At least two numeric columns selected (one for x-axis, one for y-axis)
- Optional
GROUP BYfor creating grouped scatter points - When grouped, aggregations determine the plotted values and dot size scales dynamically based on the count
Dot sizes are dynamically scaled based on the aggregation value, with the maximum size determined by the largest value in the dataset.
Creating in the UI
Configure Axes

- X-Axis: Select the numeric column for the horizontal axis
- Y-Axis: The remaining numeric columns become the y-axis values
- Group By: Optionally group data points by a categorical dimension
- Filter: Add conditions to narrow the data (optional)
Output Format
Scatter plot widgets return row data for each point:Example Use Cases
Use Case 1: Accuracy vs. Relevance Scores
Explore the relationship between accuracy and relevance across evaluation items.Use Case 2: Overall Score vs. Response Length
Explore whether longer responses correlate with higher or lower scores.Related Documentation
- Bar Chart Widget - For categorical comparisons
- Histogram Widget - For distribution visualization
- Query Language - Filter and aggregation syntax
- API Reference - Programmatic chart creation

