I am doing a buffer analysis of incinerators and looking at the output areas within those buffers, is there a way of doing a statistical analysis of several buffers to see if there is a significant pattern between the data within the buffers?
|
|
Because this question is buried in comments, let's assemble them in one place to see what's the issue:
In short, you want to relate various geodemographic (response) variables to two factors: (1) whether an incinerator was refused or accepted and (2) distance to some point location relevant to (1). This calls for a regression model. Normally, you don't perform regression modeling in a GIS if you can help it: although it can be done, no GIS supports all the diagnostic, cross-checking, and reporting needed for rigorous analysis, nor have any of them undergone the extensive testing needed to assure correct results. Instead, use the GIS to output the data (as a list of tuples containing the refuse/accept indicator, the distance, and the geodemographic variables). Pass these to a statistical program or code library and perform the regression. (Note that actually creating buffers in the GIS is unnecessary. Note, too, that you don't have to leave the GIS environment to do this work: Python supports regression analysis (if you're willing to do a bit of programming) and there are This leaves us with a subtle issue, but perhaps it's the most important: because you include |
|||
|
|
|
Turns out this is not the question the poster is asking, but I will leave the information here as it might be useful to others who come across this question: I -think- you might be looking for an analysis of spatial auto-correlation at different distance bands? Check out this series of esri instructional videos: The 2nd one might be particularly useful for you, as it discusses Moran's I, which I think might be the statistic you will be interested in. Really though, we need a lot more detail on the exact question you are trying to answer. There are a wide range of statistical tools available that are appropriate to different problems. |
||||
|
|