There is a set of data in the form of a table that I import into Mathematica:
a = Import["To.mat"];
a = Partition[Flatten[a], 3];
Then I plot $x,y$ on the plane:
data = Transpose@{a[[All, 1]], a[[All, 2]]};
And I get the following picture:
ListPlot[data]
Desired result that I need:
That is, I need the place where the points are concentrated (where they are built) to be represented as a contour or surface. How to do it with Mathematica commands?








SmoothKernelDistribution, the apparent criterion for success is that it will look like what you did by hand as opposed to something more objective. How the data was collected and what are the consequences of not having an appropriate contour would be helpful to know. $\endgroup$a = Import["To.mat", "IndeterminateValues" -> 999999] /. {999999. -> Nothing} /. {} -> Nothing;$\endgroup$