Salta al contenuto

Documentation BI4H (EN)Documentation BI4H (EN)

  • Quick Start
  • Navigation
  • Interactions
  • Charts
  • Tables
  • Filters
  • Modules
  • Data Explorer
  • Self service
  • Quick Start
  • Navigation
  • Interactions
  • Charts
  • Tables
  • Filters
  • Modules
  • Data Explorer
  • Self service
  • Quick start

    • Start up

    • Version

    • Profile

    • Top tool bar

      • Change theme layout
      • Language selection
    • Elements of BI4H

    • What is the HUB

    • What is the APP

    • What is a module

    • Release

      • BI4H 5.6.0
      • BI4H 5.5.0
      • BI4H 5.4.0 (Beta)
      • BI4H 5.3.0
  • Navigation

    • Tiles & child buttons

    • Navigation bar

    • Stepper

    • Sidenav

    • Bookmarks

    • Schedule

    • Global search

  • Interactions

    • Point & click interaction

    • Change chart type

    • Export widgets

    • Fullscreen

    • Additional details

    • Modal windows

  • Charts

    • Lines

    • Colums

    • Composed lines-columns

    • Bars

    • Area

    • Bubble

    • Pie

    • Heatmap

    • Funnel

    • Treemap

    • Geographical maps

    • Gauge

    • Scatter plot

    • Range

    • Sankey

    • Radar

    • Boxplot

  • Grids

    • Grids option

    • Simple grid

    • Group grid

    • Pivot grid

    • Editable grid

      • Usercase1 : A simple update note for the client
      • Usercase2 : Dynamic configuration management
      • Usercase 3 : Flexible Age Range Configuration for Data Analysis
  • Filters

    • Smart Filter Bar

    • Filter layout

      • Single filter
      • Group filter
      • Expanded filter
      • Tree filter
      • Builder filter
      • Search filter
    • Filter types

    • Filter options

    • Interactions

  • Modules

    • Numbers

    • Tab

    • Buttons

    • Chatbot

    • List Indicator

    • Street maps

    • Aid to interpretation

  • Data Explorer

    • Introduction

    • Configuration

      • Edit module -> Generals
      • Edit module -> Aspect
      • Edit module -> Sharing
    • Create a new query

      • Add fields from Univers
      • Add fields from tables/snippets
      • Add a custom measure
      • Conditions sections
      • Advanced mode
    • Existing query

      • Run an existing query
      • Create a query using existing query
      • Organize your queries
    • Sharing

      • Share a query
      • Run a shared query
    • Export results

  • Self service

    • Your first dashboard

      • Adding a new page to the app
      • Adding modules to the page
    • Edit Module -> DATA tab

      • Dimension & Alternative Dimension
      • Measures & Alternatives Measures
      • Categories for alternative data
      • Name of dimensions & Measures
      • Sorting of Dimensions & Measures
      • Visibility of Dimensions & Measures
      • Measures Formatting
      • Measures Threshold
    • Edit Module -> ASPECT tab

      • Title customization
      • Show Legend & Customization
      • Box colors
      • Split module
      • Box Options
      • X Axis
      • Y Axis
      • Chart Colors
      • Type (Rotate, Invert, stack)
      • Zoom
      • Tooltip
      • Average
      • Values
      • Change type
      • Other (Aspect)
    • Edit Module -> INTERACTIVITY tab

      • Action
      • Filters
      • Data
      • Other (Interactivity)
    • Edit page - Generals tab

    • Edit page - Options tab

      • Options (Page)
      • Filters (Page)
    • Edit page - Info tab

    • Edit page - Other tab

    • Rendering examples

      • Column chart combined with a line
      • Stacked chart
      • Chart with opposite axis
      • Chart with a constant line
  1. Docs
  2. Charts
  3. Boxplot

Boxplot

Reading time:

From Version 5.3.0

A boxplot is a simple chart that shows how a set of numerical data is distributed.

What a boxplot shows

  • Median: The line inside the box — the middle value of the data.
  • Box: Shows the interquartile range (IQR), from the 25th percentile (Q1) to the 75th percentile (Q3). This is where the central half of the data lies.
  • Whiskers: Lines extending from the box to show the range of the data that is not considered an outlier.
  • Outliers: Points plotted individually beyond the whiskers — unusual or extreme values.

Why use a boxplot?

  • To quickly compare distributions across categories.
  • To spot outliers.
  • To understand data spread and skewness at a glance.



How to add a boxplot chart?


To build a boxplot, you must define at least five statistical measures from your dataset. These five values describe the distribution.

Requied measures :

  • min
min(measure field)
  • 25th percentile (Q1)
quantileExact(0.25)(measure field)
  • Median (Q2)
quantileExact(0.50)(measure field)
  • 75th percentile (Q3)
quantileExact(0.75)(measure field)
  • Max
max(measure field)

These values are enough to draw the core boxplot

If you want your boxplot to display outliers, you can calculate them using the standard 1.5 × IQR rule:

  • IQR (Interquartile Range) = Q3 − Q1
  • Outliers are any values:
  • below Q1 − 1.5 × IQR
  • above Q3 + 1.5 × IQR

Formula:

arrayFilter(
    x -> x  (quantileExact(0.75)(measure field) + 1.5 * (quantileExact(0.75)(measure field) - quantileExact(0.25)(measure field))),
    groupArray(measure field)
)

This returns all the values considered outliers so they can be plotted individually.

Once your measures are created:

  1. Add each calculated measure to your chart.
  2. Open the Boxplot tab for each measure.
  3. Assign the correct role (Min, Q1, Median, Q3, Max, Outliers).

Last update: 13 February 2026
Views: 44

© 2026 Documentation BI4H (EN)

Powered by WordPress

All'inizio ↑ Su ↑