1. Homepage
  2. Programming
  3. Assignment 2: Statistical strategies in spatial analysis

Assignment 2: Statistical strategies in spatial analysis

Engage in a Conversation
PythonStatistical strategiesspatial analysisAustralia

Objectives CourseNana.COM

  1. To apply univariate and bivariate statistical techniques to explore associ - ated variables’ distributions and relationships.
  2. To assess the spatial processes and patterns in event (point) data and interpret the findings.
  3. To measure global and local spatial autocorrelation in real-world areal data and interpret the findings.

Introduction In the lectures you have been introduced to various statistical strategies in spatial analysis. Statistics is important in the process of spatial analysis as a way of investigating geographic patterns in spatial data and the relationships between features. You have also been introduced to techniques to analyse the spatial processes and patterns in point data. In this assignment, you will explore the distribution of Melbourne house sales in 2016 and 2017 using summary statistics and frequency histograms. You will also investigate the relationship between house sales and Census data using scatterplots and correlation coefficients, and you will interpret your results and discuss their significance. You will identify geographic patterns to develop your understanding of how geographic phenomena behave, specifically, quantifying patterns in point data using a range of techniques and interpreting the results. The last part of this assignment will ask you to quantify and interpret the spatial autocorrelation properties of an areal dataset, specifically, aggregated data from the Australian censu s. CourseNana.COM

Preparatory tasks To assist you with this assignment, three practicals have been developed: • geom90006_practical_2_1.ipynb • geom90006_practical_2_2.ipynb • geom90006_practical_2_3.ipynb CourseNana.COM

Data The required data is provided in the student repository on GitLab. • Melbourne house sales dataset: Melbourne house sales for A2.csv – Note - this dataset is different to what you used in Assignment 1. Make sure you use the A2 version . 2 CourseNana.COM

• ABS 2021 Census table G02 (Selected Medians and Averages) data for Victoria at SAL (Suburb and Locality) level: Census 2021 table G02 Victoria.gpkg • ABS 2021 Greater Melbourne GCCSA boundary polygon: Greater Mel - bourne (ABS) study area.shp CourseNana.COM

Outline of tasks In a Jupyter notebook, do the foll owing tasks by either writing Python code annotated with comments and/or Markdown blocks, or using Markdown blocks to respond to discussion, explanation or interpretation questions. CourseNana.COM

Part 1: Essential programming and statistics This section of the as - signment is designed to exercise your programming muscles. It may be more challenging for those with no coding background! CourseNana.COM

  1. Load the Melbourne house sales data.
  2. Generate the following text (with the missing values calculated using Python): The Melbourne house sales data has rows and fields. In this dataset, the suburb of Brunswick is frequently repre - sented ( houses sold), but the suburb with the most sales is ( houses sold). Hint: Please refer to preparatory practical six.
  3. Generate summary statistics (mean, standard deviation, median, mini - mum, maximum) for the land size and sale price fields. Make sure your output is human -readable: for example, values should be presented with appropriate numbers of decimal places and correct units of measurement.
  4. Create a histogram for the sale price field. This should be well -presented with a title, clear axis labelling, a suitable number of bins, and round numbers used where possible (e.g. 100, 200, 300 instead of 89.3, 178.6, 267.9).
  5. The sale price field is not normally distributed. Using appropriate sta - tistical terminology, briefly discuss how this field varies from the normal distribution. Explain how we can make these conclusions from the his - togram and, separately, from the summary statistics.

Part 2: Basic spatial skills The entire discipline of spatial analysis is founded on the First Law of Geography, which states that “everything is related to everything else, but near things are more related than distant things”. This law obviously relies on the notion of “distance”. Let’s begin the spatial analysis component of this assignment by calculating distances. 3 CourseNana.COM

  1. Using the longitude and latitude values provided in the house sales data, calculate the distance from Flinders Street Station (longitude 144.9671°E, latitude 37.8182°S) to each house.
  2. Are these distances accurate and realistic? Explain.
  3. Transform the latitudes and longitudes to the GDA2020 MGA Zone 55 coordinate system ( EPSG 7855 ) and repea t step 6 using your transformed coordinates. Don’t forget to transform the coordinates of Flinders Street Station as well!
  4. Calculate the mean house price of houses 0 -5 km from Flinders Street Station, 5 -10 km from Flinders Street Station, and so on, up to 30+ km from Flinders Street Station, and offer your insights into your results.
  5. Challenge: Display your results from the previous question on a column chart.

Part 3: Spatial joins and bivariate statistics CourseNana.COM

  1. Load the ABS Census data from its GeoPackage.
  2. Perform a spatial join of the Census locality polygons onto the house sales dataset.
  3. Generate scatterplots for the following pairs of variables: sale price – median age sale price – average household size sale price – total household income
  4. Determine the Pearson correlation coefficient of each of the relationships you generated a scatterplot for.
  5. Taking into consideration the scatterplots and correlation coefficients, give a real-world interpretation of your results from the previous two questions.
  6. (a) In this section of the assignment, why did you need to perform a join? (b) The house sales dataset already contains suburb names. Suggest why we might be performing a spatial join, as opposed to a traditional column -based join where the two datasets are matched using the variable they have in common.

Part 4: Making maps Displaying your data and your analysis results as a map is an essential skill for a spatial data analyst. Using Python, it is easy to generate a rudimentary map with default settings (see example) but for inclu - sion in professional reports, a high standard of cartography with cartographic elements is expected. A professional map should include cartographic elements such as: • a border or box around the map area (only necessary if the map content extends to the very edge of the map area); 4 CourseNana.COM

• an orientation (north arrow or graticule) if this is not obvious from the map itself; • a clear legend explaining all colours and symbols used on the map, other than obvious ones like roads and rivers; • a title providing a clear indication to the readers of the map’s topic; • a scale (this may be a scale bar or a grid or graticule); and • a caption or label showing the source of data. The mnemonic BOLTSS is used to remember these items. When using Python it is also important to remove unnecessary “chart junk”. For instance, most maps do not have axis labels or default grid lines. You can use the CartoPy and matplotlib libraries to help you produce standard maps with cartographic elements. For the following point pattern analysis, we will focus on the following three localities of Melbourne as our study areas: • Carlton – named Carlton (Vic.) in the Census dataset • Doncaster East • Keilor East CourseNana.COM

  1. Make a professional -quality map of the house price points in one of these study areas. The study area boundary should be included. Use a relevant Python library to include an appropriate basemap that helps the map audience to put the data into context.

Part 5: Point pattern analysis – house sales CourseNana.COM

  1. For the house sales data in each of the three study area localities (sepa - rately), calculate the Average Nearest Neighbour distance and the z-score. For Challenge marks, do this by writing your own code using (for example) GeoPandas directly, instead of using a point pattern analysis library. Hint: The formula for the z-score is on this page .
  2. Calculate the P-values correspond ing to the z-scores in the previous ques - tion.
  3. Display a graph of the K or L function (y -axis) against distance (x -axis) for each of the study area localities.
  4. Give an interpretation of your results from the previous two questions. Describe in detail (a) what these results tell you – and don’t tell you – about the point patterns and about your data, and (b) what you have learned about these two analysis techniques.
  5. Challenge : The K function is subject to “edge effects”. In your own words, explain what this means and why this is a problem, giving an example. Then suggest how the K function could be adapted to account for edge effects. 5

Part 6: Spatial autocorrelation analysis Let’s leave aside the house sales data for now and focus on the Census polygons. We will perform a spatial autocorrelation analysis to measure the extent to which the Census variables exhibit spatial dependence. CourseNana.COM

  1. The provided Census data is for the whole state of Victoria. For ease of analysis, we will focus on Greater Melbourne as defined by the ABS. “Clip” your Census polygons to the Greater Melbourne (ABS) study area.shp shapefile provided. Hint: GeoPandas provides a clip method that you can use.
  2. The Census data contains several attributes about the population in each locality. Select one of these attributes for your analysis.
  3. Draw a well -presented choropleth map of this attribute for Greater Mel - bourne.
  4. Using a spatial weights/neighbourhoods system of your choice, compute the global Moran’s I index for this attribute and give your interpretation of the results.
  5. Display the Moran’s scatterplot for this attribute. Focusing on one par - ticular locality (that is, one data point on your scatterplot), give your interpretation of what that suburb’s position on the scatterplo t tells you about that suburb and its surrounding areas.
  6. Compute the local Moran’s I index for all polygons in your study area. Present your results as a map and give your interpretation.

Submission Submit a Jupyter notebook file (.ipynb) to Canvas. As you are using only the data provided by us, there is no need to submit any data. Your notebook must load the files from a data subfolder. The files must have exactly the same name as they do in this repository. For example: import pandas as pd house_sales_df = pd.read_csv( 'data/Melbourne house sales for A2.csv') import geopandas as gpd census_polygons = gpd.read_file( 'data/Census 2021 table G02 Victoria.gpkg' ) If this is not adhered to, the markers will have difficulty running your code and you will lose marks. Please speak to your tutor if you would like to use libraries that are not in the provided spanalytics.yml environment. This is an individual assignment . Read about academic integrity here . 6 CourseNana.COM

Marking criteria • Correctness of output – 20% • Code structure – 10% • Theoretical and conceptual understanding of fundamentals – 20% • Quality of analytical insights and interpretation – 30% • Professional standard (spelling, layout, presentation of charts/maps) – 10% • Challenge questions – 10% CourseNana.COM

Get in Touch with Our Experts

WeChat WeChat
Whatsapp WhatsApp
Python代写,Statistical strategies代写,spatial analysis代写,Australia代写,Python代编,Statistical strategies代编,spatial analysis代编,Australia代编,Python代考,Statistical strategies代考,spatial analysis代考,Australia代考,Pythonhelp,Statistical strategieshelp,spatial analysishelp,Australiahelp,Python作业代写,Statistical strategies作业代写,spatial analysis作业代写,Australia作业代写,Python编程代写,Statistical strategies编程代写,spatial analysis编程代写,Australia编程代写,Pythonprogramming help,Statistical strategiesprogramming help,spatial analysisprogramming help,Australiaprogramming help,Pythonassignment help,Statistical strategiesassignment help,spatial analysisassignment help,Australiaassignment help,Pythonsolution,Statistical strategiessolution,spatial analysissolution,Australiasolution,