关键词不能为空

当前您在: 主页 > 英语 >

用STATA做空间计量

作者:高考题库网
来源:https://www.bjmy2z.cn/gaokao
2021-02-06 10:50
tags:

-

2021年2月6日发(作者:省份英语)


实用文案



How can I calculate Moran's I in Stata?


Note:


The


commands


shown


in


this


page


are


user- written


Stata


commands


that


must be downloaded.



To install the package of spatial analysis tools, type findit


spatgsa in the command window.




Moran's


I


is


a


measure


of


spatial


autocorrelation--how


related


the


values


of


a


variable


are


based


on


the


locations


where


they


were


measured.



Using


a


set


of


user-written Stata commands, we can calculate Moran's I in Stata.



We will be using


the spatwmat command to generate a matrix of weights based on the locations in


our


data


and


the


spatgsa


command


to


calculate


Moran's


I


or


other


spatial


autocorrelation measures.





Let's look at an example. Our dataset, ozone, contains ozone measurements from


thirty-two


locations


in


the


Los


Angeles


area


aggregated


over


one


month.


The


dataset


includes


the


station


number


(station),


the


latitude


and


longitude


of


the


station


(lat


and


lon),


and


the


average


of


the


highest


eight


hour


daily


averages


(av8top).


This


data,


and


other


spatial


datasets,


can


be


downloaded


from


the


University


of


Illinois's


Spatial


Analysis


Lab.


We


can


look


at


a


summary


of


our


location variables to see the range of locations under consideration.



use /stat/stata/faq/, clear


summarize lat lon



标准文档



实用文案







Variable |








Obs









Mean





Std. Dev.








Min









Max


-------------+---------- ----------------------------------------------











lat |









32






34.0146




.2228168





33.6275




34.69012











lon |









32




-117.7078




.5683853



-118.5347



-116.2339



Based on the minimum and maximum values of these variables, we can calculate


the


greatest


Euclidean


distance


we


might


measure


between


two


points


in


our


dataset.



display sqrt((34.69012 - 33.6275)^2 + (-116.2339 - -118.5347)^2)



2.5343326


Knowing this maximum distance between two points in our data, we can generate a


matrix


based


on


the


distances


between


points.



In


the


spatwmat


command,


we


name the weights matrix to be generated, indicate which of our variables are the x-


and


y-coordinate


variables,


and


provide


a


range


of


distance


values


that


are


of


interest in the band option.



All of the distances are of interest in this example, so


we create a band with an upper bound greater than our largest possible distance. If


we did not care about distances greater than 2, we could indicate this in the band


option.




spatwmat, name(ozoneweights) xcoord(lon) ycoord(lat) band(0 3)


标准文档



实用文案




The following matrix has been created:



1. Inverse distance weights matrix ozoneweights






Dimension: 32x32





Distance band: 0 < d <= 3





Friction parameter: 1





Minimum distance: 0.1











1st quartile distance: 0.4











Median distance: 0.6











3rd quartile distance: 1.0











Maximum distance: 2.4











Largest minimum distance: 0.50










Smallest maximum distance: 1.23




As described in the output, the command above generated a matrix with 32 rows


and 32 columns because our data includes 32 locations. Each off-diagonal entry [i, j]


in the matrix is equal to 1/(distance between point i and point j).



Thus, the matrix


entries for pairs of points that are close together are higher than for pairs of points


that are far apart.



If you


wish to


look at


the matrix, you


can


display


it


with the


matrix list command. With our matrix of weights, we can now calculate Moran's I.





标准文档



实用文案



spatgsa av8top, weights(ozoneweights) moran



Measures of global spatial autocorrelation




Weights matrix


------------- -------------------------------------------------


Name: ozoneweights


Type: Distance-based (inverse distance)


Distance band: 0.0 < d <= 3.0


Row-standardized: No


------- -------------------------------------------------- -----



Moran's I


-------------------------------------------------- ------------












Variables |





I







E(I)




sd(I)






z





p-value*


--------------------+------------------------ -----------------















av8top |



0.248



-0.032




0.036




7.679




0.000


---------- -------------------------------------------------- --


*1-tail test



Based on these results, we can reject the null hypothesis that there is zero spatial


标准文档



实用文案



autocorrelation present in the variable av8top at alpha = .05.



Variations


Binary


Matrix:


If


there


exists


some


threshold


distance


d


such


that


pairs


with


distances less than d are neighbors and pairs with distances greater than d are not,


you can create a binary neighbors matrix with the spatwmat command (indicating


bin and setting band to have an upper bound of d) and use this weights matrix for


calculating Moran's I.



We could do this for d = .75:




spatwmat, name(ozoneweights) xcoord(lon) ycoord(lat) band(0 .75) bin



The following matrix has been created:



1. Distance-based binary weights matrix ozoneweights






Dimension: 32x32





Distance band: 0 < d <= .75





Friction parameter: 1





Minimum distance: 0.1











1st quartile distance: 0.4











Median distance: 0.6











3rd quartile distance: 1.0











Maximum distance: 2.4








标准文档



实用文案






Largest minimum distance: 0.50










Smallest maximum distance: 1.23



spatgsa av8top, weights(ozoneweights) moran




Measures of global spatial autocorrelation




Weights matrix


------------- -------------------------------------------------


Name: ozoneweights


Type: Distance-based (binary)


Distance band: 0.0 < d <= 0.75


Row-standardized: No


----------------------------------------- ---------------------



Moran's I


------------------ --------------------------------------------












Variables |





I







E(I)




sd(I)






z





p-value*


------------------- -+-----------------------------------------















av8top |



0.188



-0.032




0.033




6.762




0.000


标准文档



实用文案



------------ --------------------------------------------------


*1-tail test



In this example, the binary formulation of distance yields a similar result.



We can


reject the null hypothesis that there is zero spatial autocorrelation present in the


variable av8top at alpha = .05.




Using an existing matrix: If you have calculated a weights matrix according to some


other


metric


than


those


available


in


spatwmat


and


wish


to


use


it


in


calculating


Moran's


I,


spatwmat


allows


you


to


read


in


a


Stata


dataset


of


the


required


dimensions


and


format


it


as


a


distance


matrix


that


can


be


used


by


spatgsa.



If


is a dataset with 32 columns and 32 rows, it could be converted to a


weighted matrix aweights to be used in spatgsa analyzing av8top:



spatwmat using









标准文档



实用文案

























标准文档


-


-


-


-


-


-


-


-



本文更新与2021-02-06 10:50,由作者提供,不代表本网站立场,转载请注明出处:https://www.bjmy2z.cn/gaokao/607579.html

用STATA做空间计量的相关文章

  • 爱心与尊严的高中作文题库

    1.关于爱心和尊严的作文八百字 我们不必怀疑富翁的捐助,毕竟普施爱心,善莫大焉,它是一 种美;我们也不必指责苛求受捐者的冷漠的拒绝,因为人总是有尊 严的,这也是一种美。

    小学作文
  • 爱心与尊严高中作文题库

    1.关于爱心和尊严的作文八百字 我们不必怀疑富翁的捐助,毕竟普施爱心,善莫大焉,它是一 种美;我们也不必指责苛求受捐者的冷漠的拒绝,因为人总是有尊 严的,这也是一种美。

    小学作文
  • 爱心与尊重的作文题库

    1.作文关爱与尊重议论文 如果说没有爱就没有教育的话,那么离开了尊重同样也谈不上教育。 因为每一位孩子都渴望得到他人的尊重,尤其是教师的尊重。可是在现实生活中,不时会有

    小学作文
  • 爱心责任100字作文题库

    1.有关爱心,坚持,责任的作文题库各三个 一则150字左右 (要事例) “胜不骄,败不馁”这句话我常听外婆说起。 这句名言的意思是说胜利了抄不骄傲,失败了不气馁。我真正体会到它

    小学作文
  • 爱心责任心的作文题库

    1.有关爱心,坚持,责任的作文题库各三个 一则150字左右 (要事例) “胜不骄,败不馁”这句话我常听外婆说起。 这句名言的意思是说胜利了抄不骄傲,失败了不气馁。我真正体会到它

    小学作文
  • 爱心责任作文题库

    1.有关爱心,坚持,责任的作文题库各三个 一则150字左右 (要事例) “胜不骄,败不馁”这句话我常听外婆说起。 这句名言的意思是说胜利了抄不骄傲,失败了不气馁。我真正体会到它

    小学作文