Back to Data Visualization
scatter
Scatter plot
Syntax
scatter(x, y)
Description
Creates a scatter plot of y versus x.
Parameters
| Name | Description |
|---|---|
| x | X-coordinates (NDArray) |
| y | Y-coordinates (NDArray) |
Returns
null (renders chart inline)
Examples
Try It
>> scatter(rand(20, 1), rand(20, 1))