Heatmap

A heatmap visualizing values across two dimensions using color intensity.

Heatmap


Graph

Creates a heatmap visualization that displays values across two dimensions using color intensity. The function takes x and y data inputs and generates a rectangular heatmap where color represents the count or density of data points in each bin.

Inputs

x
The data for the x-axis dimension of the heatmap
y
The data for the y-axis dimension of the heatmap

Inputs Types

Input Types
x List, DataSeries, NDArray, DataRecords, DataFrame
y List, DataSeries, NDArray, DataRecords, DataFrame

You can check the list of supported types here: Available Type Hints.

Outputs

x
The processed x-axis data used for the heatmap visualization
y
The processed y-axis data used for the heatmap visualization

Outputs Types

Output Types
x List, DataSeries, NDArray, DataRecords, DataFrame
y List, DataSeries, NDArray, DataRecords, DataFrame

You can check the list of supported types here: Available Type Hints.

Options

The Heatmap brick contains some changeable options:

'x' data field
Specifies the field name to use for the x-axis data mapping
Max bins for 'x'
Sets the maximum number of bins for discretizing the x-axis data (range: 5-300, step: 5)
'y' data field
Specifies the field name to use for the y-axis data mapping
Max bins for 'y'
Sets the maximum number of bins for discretizing the y-axis data (range: 5-300, step: 5)

Brick Info

version v0.1.4
python 3.10, 3.11, 3.12, 3.13
requirements
    -