Scatterplot
Scatterplot displaying relationships and patterns between two quantitative variables.
Scatterplot
Processing
Scatterplot displaying relationships and patterns between two quantitative variables. This brick generates a visualization using the provided X and Y data and passes the input data through its outputs.
Inputs
- x
- Data to be plotted on the X-axis.
- y
- Data to be plotted on the Y-axis.
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 original X data passed through the brick unchanged.
- y
- The original Y data passed through the brick unchanged.
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 Scatterplot brick contains some changeable options:
- X field
- Defines the field name within the input data structure (e.g., DataFrame or DataRecords) to use for the X-axis of the scatterplot. Defaults to 'x'.
- Y field
- Defines the field name within the input data structure (e.g., DataFrame or DataRecords) to use for the Y-axis of the scatterplot. Defaults to 'y'.
Brick Info
version
v0.2.0
python
3.10,
3.11,
3.12,
3.13
requirements
-
-