Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Confused about MATLAB visualization

I have a 24 dimensional dataset of 100,000 data points which are mapped onto 2d plane using sammon mapping (a method ro reduce dimensionality and visualize). The scatter plot is shown below! Doesn't look too interesting.Scatter plot of the datapoints.

But when i tilted my screen an looked at the figure, a square array of points appeared. I am not a matlab user and i am confused whether there is some meaning to this for example are the points forming a clusters etc ? or is this just some sorcery. enter image description here

like image 640
your_boy_gorja Avatar asked May 27 '26 14:05

your_boy_gorja


1 Answers

Please use the scatter command and change the scatter properties.

fig = figure('Color','white');
sc = scatter(y_stacked(:,1), y_stacked(:,2));
sc.Marker = '.';
sc.SizeData = 1;

Then, make the figure window as big as possible and/or zoom in to examine your data points more closely.

like image 54
Daniel1000 Avatar answered May 30 '26 10:05

Daniel1000



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!