<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Mean Center vs. Median Center in Spatial Statistics Questions</title>
    <link>https://community.esri.com/t5/spatial-statistics-questions/mean-center-vs-median-center/m-p/152483#M507</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the mean center is going to be the arithmetic average of the coordinates which will be influenced to a greater degree than the median because of that outlier to the right/east The median can be calculated in several ways, but typically it is the middle value of the ranked X and Y coordinates, hence, outliers have less impact on the value. &amp;nbsp;If you are looking to get your measure of centrality in the ellipse you have identified, there is no guarantee that you will get it with either measure. &amp;nbsp;In such cases where you have outliers, one can use a trim mean which looks at 95% of the data points with 2.5% trimmed off the extremes from the sorted list of X and Y, this is not implemented in ArcMap.&lt;/P&gt;&lt;P&gt;Other alternatives, although less employeed, would be to produce a Delaunay triangulation (TIN) and determine the area of the triangles. &amp;nbsp;A sorted list of their areas would identify areas &amp;nbsp;from which you could select the points as candidates for the mean or median, after trimming the triangle list so that 90% or so of the area is represented.. &amp;nbsp;You can do the same with successive removals of convex hulls. &amp;nbsp;determine the convex hull, remove the points on the hull and recalculate until you are left with a certain percentage of area (perhaps 90% or even 50%)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Centrality has no 'accurate' measure, only 'best'... so in short, go with the median, or if you want to trim, do a trim median.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other options are possible but more esoteric.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 15 Aug 2016 07:55:37 GMT</pubDate>
    <dc:creator>DanPatterson_Retired</dc:creator>
    <dc:date>2016-08-15T07:55:37Z</dc:date>
    <item>
      <title>Mean Center vs. Median Center</title>
      <link>https://community.esri.com/t5/spatial-statistics-questions/mean-center-vs-median-center/m-p/152482#M506</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have&amp;nbsp;a points dataset. I want&amp;nbsp;to identify the cluster area first, and then, find the center of this&amp;nbsp;cluster area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I was thinking to use "&lt;STRONG&gt;K-Means&lt;/STRONG&gt;", but I'm working on a single cluster, so I believe this method is not fitting with my case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now, I'm thinking to use either "&lt;STRONG&gt;Mean Center&lt;/STRONG&gt;" or "&lt;STRONG&gt;Median Center&lt;/STRONG&gt;" tool after identifying the cluster area by using the "&lt;STRONG&gt;Optimized Hot Spot Analysis&lt;/STRONG&gt;". However, I'm confused between the mean and median. I'm dealing with only locations without any required weights, which means that I just want to find the center location of the points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Which one of the two methods is the most proper and accurate for my case? And why?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;* I read a lot about them, but I couldn't find the answer for my case.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;* In the attachment, you can see the dataset and the cluster area marked by the red circle.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you in advance&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG alt="" class="image-1 jive-image j-img-original" src="/legacyfs/online/216309_Screen Shot 2016-08-15 at 12.13.17 AM.png" style="width: 620px; height: 460px;" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2016 07:36:36 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-statistics-questions/mean-center-vs-median-center/m-p/152482#M506</guid>
      <dc:creator>FaisalBasudan1</dc:creator>
      <dc:date>2016-08-15T07:36:36Z</dc:date>
    </item>
    <item>
      <title>Re: Mean Center vs. Median Center</title>
      <link>https://community.esri.com/t5/spatial-statistics-questions/mean-center-vs-median-center/m-p/152483#M507</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;the mean center is going to be the arithmetic average of the coordinates which will be influenced to a greater degree than the median because of that outlier to the right/east The median can be calculated in several ways, but typically it is the middle value of the ranked X and Y coordinates, hence, outliers have less impact on the value. &amp;nbsp;If you are looking to get your measure of centrality in the ellipse you have identified, there is no guarantee that you will get it with either measure. &amp;nbsp;In such cases where you have outliers, one can use a trim mean which looks at 95% of the data points with 2.5% trimmed off the extremes from the sorted list of X and Y, this is not implemented in ArcMap.&lt;/P&gt;&lt;P&gt;Other alternatives, although less employeed, would be to produce a Delaunay triangulation (TIN) and determine the area of the triangles. &amp;nbsp;A sorted list of their areas would identify areas &amp;nbsp;from which you could select the points as candidates for the mean or median, after trimming the triangle list so that 90% or so of the area is represented.. &amp;nbsp;You can do the same with successive removals of convex hulls. &amp;nbsp;determine the convex hull, remove the points on the hull and recalculate until you are left with a certain percentage of area (perhaps 90% or even 50%)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Centrality has no 'accurate' measure, only 'best'... so in short, go with the median, or if you want to trim, do a trim median.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Other options are possible but more esoteric.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2016 07:55:37 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-statistics-questions/mean-center-vs-median-center/m-p/152483#M507</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-08-15T07:55:37Z</dc:date>
    </item>
    <item>
      <title>Re: Mean Center vs. Median Center</title>
      <link>https://community.esri.com/t5/spatial-statistics-questions/mean-center-vs-median-center/m-p/152484#M508</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The Directional Distribution tool (&lt;A class="link-titled" href="http://desktop.arcgis.com/en/arcmap/10.3/tools/spatial-statistics-toolbox/directional-distribution.htm" title="http://desktop.arcgis.com/en/arcmap/10.3/tools/spatial-statistics-toolbox/directional-distribution.htm"&gt;Directional Distribution (Standard Deviational Ellipse)—Help | ArcGIS for Desktop&lt;/A&gt;&amp;nbsp;) might help eliminate the outliers. &amp;nbsp;It also provides the centroid coordinates of the ellipse indicating the distribution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2016 08:09:33 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-statistics-questions/mean-center-vs-median-center/m-p/152484#M508</guid>
      <dc:creator>FC_Basson</dc:creator>
      <dc:date>2016-08-15T08:09:33Z</dc:date>
    </item>
    <item>
      <title>Re: Mean Center vs. Median Center</title>
      <link>https://community.esri.com/t5/spatial-statistics-questions/mean-center-vs-median-center/m-p/152485#M509</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes that is one of the possibilities, although affected by outliers as well, it would perform a point based approach. The reducing convex hulls would produce similar results as the SDE, but would be areal based rather than distance to centrality based. &amp;nbsp;As indicated, there is no 'ONE' measure of centrality. &amp;nbsp;For instance, you could construct a Spanning Tree&amp;nbsp;&lt;A class="link-titled" href="http://www.arcgis.com/home/item.html?id=6ce9db93533345e49350d30a07fc913a" title="http://www.arcgis.com/home/item.html?id=6ce9db93533345e49350d30a07fc913a"&gt;http://www.arcgis.com/home/item.html?id=6ce9db93533345e49350d30a07fc913a&lt;/A&gt;&amp;nbsp; and find the middle point of the tree which would represent the place which minimizes the connectedness of all points.&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=564e2949763943e3b9fb4240bab0ca2f"&gt;Bounding Containers&lt;/A&gt;&amp;nbsp;with central measure in a minimum area bounding rectangle or&amp;nbsp;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.arcgis.com/home/item.html?id=6e9bc6cbf93d4939b2eb04ff8519be47"&gt;Voronoi/Delaunay&lt;/A&gt;&amp;nbsp;could be used if one wanted to peal away the outer layers of a voronoi or delaunay triangulation and find the center of mass/area.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 15 Aug 2016 08:22:12 GMT</pubDate>
      <guid>https://community.esri.com/t5/spatial-statistics-questions/mean-center-vs-median-center/m-p/152485#M509</guid>
      <dc:creator>DanPatterson_Retired</dc:creator>
      <dc:date>2016-08-15T08:22:12Z</dc:date>
    </item>
  </channel>
</rss>

