How to select the outliers of a scatter plot by mouse click and return the coordinates to the main function
7 views (last 30 days)
Show older comments
How to select the outliers of a scatter plot by mouse click and return the coordinates to the main function.
Here is a scatter plot composed of known points, how to select some anomalies by mouse click and return the coordinates of the anomalies to the main function?
Suppose the selected points in the graph are anomalies (3 points).
0 Comments
Answers (1)
Suraj Kumar
on 27 Sep 2024
To select outliers from a scatter plot and return the coordinates of the selected points to the main function, you can follow these steps:
1. Use the ‘ginput’ function to capture the x and y coordinates of the points selected from the plot by clicking.
% Get user input for selected points
[xSelected, ySelected] = ginput;
2. Visually mark the selected points in the scatter plot to confirm them.
hold on;
scatter(xSelected, ySelected, 100, 'r', 'x'); % Mark selected points
hold off;
3. Store the coordinates in a matrix and return the matrix from the function.
selectedPoints = [xSelected, ySelected];
You may refer to the output below:
For more information on the ‘ginput’ function in MATLAB, you can check the following documentation:
Hope this helps!
0 Comments
See Also
Categories
Find more on Scatter Plots in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!