<?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: How to solve the geospatial autocorrelation problem using Moran in the proc variogram process st in Statistical Procedures</title>
    <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-solve-the-geospatial-autocorrelation-problem-using-Moran/m-p/866360#M42817</link>
    <description>&lt;PRE&gt;&lt;CODE class=""&gt;/*Write a binary neighbor queen space weight matrix*/
DATA WEIGHT;
LENGTH CITY $10.;
INFILE DATALINES DLM=',';
INPUT CITY  Nanning Liuzhou Guilin Wuzhou Beihai Fangchen Qinzhou
Guigang Yulin Baise Hezhou Hechi Laibin Congzuo @@
;
DATALINES;
Nanning,0,0,0,0,0,1,1,1,0,1,0,1,1,1
	Liuzhou,0,0,1,0,0,0,0,0,0,0,0,1,1,0
		Guilin,0,1,0,1,0,0,0,0,0,0,1,0,1,0
			Wuzhou,0,0,1,0,0,0,0,1,1,0,1,0,1,0
				Beihai,0,0,0,0,0,0,1,0,1,0,0,0,0,0
					Fangcheng,1,0,0,0,0,0,1,0,0,0,0,0,0,1
						Qinzhou,1,0,0,0,1,1,0,1,1,0,0,0,0,0
							Guigang,1,0,0,1,0,0,1,0,1,0,0,0,1,0
						Yulin,0,0,0,1,1,0,1,1,0,0,0,0,0,0
					Baise,1,0,0,0,0,0,0,0,0,0,0,1,0,1
				Hezhou,0,0,1,1,0,0,0,0,0,0,0,0,0,0
			Hechi,1,1,0,0,0,0,0,0,0,1,0,0,1,0
		Laibin,1,1,1,1,0,0,0,1,0,0,0,1,0,0
	Congzuo,1,0,0,0,0,1,0,0,0,1,0,0,0,0
;

&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;CODE class=""&gt;如何将此空间权重矩阵中的数据添加到PROC变异函数以计算MORAN'S I以验证空间自相关&lt;/CODE&gt;&lt;/P&gt;</description>
    <pubDate>Sun, 26 Mar 2023 10:06:03 GMT</pubDate>
    <dc:creator>_Sas_Beginner_</dc:creator>
    <dc:date>2023-03-26T10:06:03Z</dc:date>
    <item>
      <title>How to solve the geospatial autocorrelation problem using Moran in the proc variogram process step?</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-solve-the-geospatial-autocorrelation-problem-using-Moran/m-p/866356#M42816</link>
      <description>&lt;P&gt;&lt;FONT&gt;SIMILAR TO GEODA SOFTWARE, FIRST MAKE GEOSPATIAL WEIGHTS FOR THE MAP, AND THEN ADD DATA TO DIRECTLY CALCULATE MORAN'S I AND LOCAL MORAN, I WANT TO DO THE SAME IN PROC VARIOGRAM, BUT I CAN'T FIND THE RELEVANT OPTIONS AND SETTINGS, WHAT SHOULD I DO? PLEASE!!!&lt;/FONT&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Mar 2023 09:51:51 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-solve-the-geospatial-autocorrelation-problem-using-Moran/m-p/866356#M42816</guid>
      <dc:creator>_Sas_Beginner_</dc:creator>
      <dc:date>2023-03-26T09:51:51Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve the geospatial autocorrelation problem using Moran in the proc variogram process st</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-solve-the-geospatial-autocorrelation-problem-using-Moran/m-p/866360#M42817</link>
      <description>&lt;PRE&gt;&lt;CODE class=""&gt;/*Write a binary neighbor queen space weight matrix*/
DATA WEIGHT;
LENGTH CITY $10.;
INFILE DATALINES DLM=',';
INPUT CITY  Nanning Liuzhou Guilin Wuzhou Beihai Fangchen Qinzhou
Guigang Yulin Baise Hezhou Hechi Laibin Congzuo @@
;
DATALINES;
Nanning,0,0,0,0,0,1,1,1,0,1,0,1,1,1
	Liuzhou,0,0,1,0,0,0,0,0,0,0,0,1,1,0
		Guilin,0,1,0,1,0,0,0,0,0,0,1,0,1,0
			Wuzhou,0,0,1,0,0,0,0,1,1,0,1,0,1,0
				Beihai,0,0,0,0,0,0,1,0,1,0,0,0,0,0
					Fangcheng,1,0,0,0,0,0,1,0,0,0,0,0,0,1
						Qinzhou,1,0,0,0,1,1,0,1,1,0,0,0,0,0
							Guigang,1,0,0,1,0,0,1,0,1,0,0,0,1,0
						Yulin,0,0,0,1,1,0,1,1,0,0,0,0,0,0
					Baise,1,0,0,0,0,0,0,0,0,0,0,1,0,1
				Hezhou,0,0,1,1,0,0,0,0,0,0,0,0,0,0
			Hechi,1,1,0,0,0,0,0,0,0,1,0,0,1,0
		Laibin,1,1,1,1,0,0,0,1,0,0,0,1,0,0
	Congzuo,1,0,0,0,0,1,0,0,0,1,0,0,0,0
;

&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&amp;nbsp;&lt;CODE class=""&gt;如何将此空间权重矩阵中的数据添加到PROC变异函数以计算MORAN'S I以验证空间自相关&lt;/CODE&gt;&lt;/P&gt;</description>
      <pubDate>Sun, 26 Mar 2023 10:06:03 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-solve-the-geospatial-autocorrelation-problem-using-Moran/m-p/866360#M42817</guid>
      <dc:creator>_Sas_Beginner_</dc:creator>
      <dc:date>2023-03-26T10:06:03Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve the geospatial autocorrelation problem using Moran in the proc variogram process st</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-solve-the-geospatial-autocorrelation-problem-using-Moran/m-p/866535#M42822</link>
      <description>&lt;P&gt;Usage Note 22944: Computing Moran's I and Geary's c spatial autocorrelation coefficients&lt;BR /&gt;&lt;A href="https://support.sas.com/kb/22/944.html" target="_blank"&gt;https://support.sas.com/kb/22/944.html&lt;/A&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&lt;/P&gt;
&lt;P&gt;Koen&lt;/P&gt;</description>
      <pubDate>Mon, 27 Mar 2023 14:49:25 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-solve-the-geospatial-autocorrelation-problem-using-Moran/m-p/866535#M42822</guid>
      <dc:creator>sbxkoenk</dc:creator>
      <dc:date>2023-03-27T14:49:25Z</dc:date>
    </item>
    <item>
      <title>Re: How to solve the geospatial autocorrelation problem using Moran in the proc variogram process st</title>
      <link>https://communities.sas.com/t5/Statistical-Procedures/How-to-solve-the-geospatial-autocorrelation-problem-using-Moran/m-p/867896#M42903</link>
      <description>The problem has been solved. Thank you very much for your answer</description>
      <pubDate>Tue, 04 Apr 2023 02:27:20 GMT</pubDate>
      <guid>https://communities.sas.com/t5/Statistical-Procedures/How-to-solve-the-geospatial-autocorrelation-problem-using-Moran/m-p/867896#M42903</guid>
      <dc:creator>_Sas_Beginner_</dc:creator>
      <dc:date>2023-04-04T02:27:20Z</dc:date>
    </item>
  </channel>
</rss>

