-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathindex.Rmd
685 lines (453 loc) · 15.1 KB
/
index.Rmd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
---
title: "R_ile_Mekansal_Analiz"
author: "Firat Gundem"
date: "4/14/2022"
output: html_document
knit: (function(input_file, encoding) {
out_dir <- 'docs';
rmarkdown::render(input_file,
encoding=encoding,
output_file=file.path(dirname(input_file), out_dir, 'index.html'))})
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo = TRUE)
```
```{r results='hide', message=FALSE, warning=FALSE}
library(sf)
library(ggplot2)
library(dplyr)
library(tmap)
```
# Mekansal Analiz nedir?
- Mekansal analiz ya da Mekansal Veri Bilimi (**Spatial Data Science**) verilerdeki mekansallığı dikkate alarak analiz eden, yani mekanin bilgisini analizin nesnesi haline getiren yeni bir bilim alanı
- Hesaplama temelli istatistik, ekonometrik ve coğrafi bilgi kümesi olarak tanımlanabilir
# Mekansal analiz icin gerekli olan materyaller nelerdir?
- Sekil/Polygon/Geometri/Mekan bilgisini iceren formatlar
+ Shape File
+ GeoJSON
+ TopoJSON
- Mekansal Analiz yapabilen yazilimlar
+ [ArcGIS](https://www.arcgis.com/index.html)
+ [QGIS](https://qgis.org/tr/site/)
+ [GeoDa](http://geodacenter.github.io/download.html)
+ [**R**](https://www.r-project.org/)
# Shape File ve Ozellikleri
-Mekansal analiz için en temel gereksinimlerden biri shape file denilen geometri dosyasıdır.
- Basit anlamda shape file geometrik bilgiyi ve o geometriye ilişkin coğrafi özellikleri içerir.
-Bir shape file’daki geometrik bilgiler nokta, çizgi ya da poligon ile temsil edilebilirler.
-Uygulamada basitçe bir ülkedeki şehirlerin her birinin birer poligon olarak ifade edilebilir.
```{r}
# Mekansal Analiz Icin sart olan dosya formatlari
# turkey.shp ==> Shape File
# turkey.shx ==> Autodesk AutoCAD tarafindan derlenen, sekil ve font tanimlamalarini iceren dosya
# turkey.dbf ==> data base file
# Mekansal Analiz icin gerekli ancak sart olmayan dosya formatlari
#.prj,
#.gda,
#.sbx, vb.
```
# Turkiye'nin Shape File'i
<https://data.humdata.org/dataset/turkey-administrative-boundaries-levels-0-1-2>
# Shape File Yukleme
```{r echo= TRUE}
turkey <- st_read("C:/Users/firat/Desktop/turkey_administrativelevels0_1_2/adm1a/tur_polbnda_adm1a.shp")
turkey
```
```{r}
plot(turkey)
```
```{r}
plot(st_geometry(turkey))
```
# Harita Projeksiyonu
```{r echo= TRUE}
st_crs(turkey)
```
- WSG 84 ==> World Geodetic System, WGS 1984, Amerikan Ulusal Geospatial Intelligence Agency tarafindan olusturulmustur
- EPSG:4326 olarak da bilinir! (European Petroleum Survey Group)
- Cartography, geodesy ve GPS'i de iceren uydu navigasyon (satellite navigation) icin bir standart olcu birimidir
Burada son satırda gördüğümüz "ID["EPSG",4326]]" bilgisi haritamızın projekte edilmiş olduğunu gösteriyor. Peki "st_crs" kodunu çalıştırdıktan sonra şöyle bir ifade ile karşılaşmış olsaydık ne yapacaktık?
```{r}
#proj4string: "+proj=longlat +ellps=GRS80 +towgs84=0,0,0,0,0,0,0 +no_defs
```
Bu ifade bize haritamızın projekte edilmediğini gösterecekti çünkü "proj4string" ifadesini "+proj=longlat" takip ediyor. Eğer karşılaştığımız sonuç bu şekilde olsaydı, o zaman haritamızı projekte etmemiz gerekecekti. Peki hangi projeksiyon bilgisini kullanmamız lazım? Bu sorunun cevabi derin felsefi tartışmalar gerektirir ki bizim amacımız sadece haritamızı doğru bir şekilde görselleştirmek. Bunun için ülkelerin EPSG kodlarını bulmamız isimizi görecektir. Bunu yapabilmek için de ülkelerin UTM paftalarını bilmemiz gerekiyor.
Kısa bir Google araştırmasından sonra Türkiye’nin 4 farklı UTM paftasına sahip olduğunu görüyoruz.
## Turkiye'nin UTM Paftasi
![](C:/Users/firat/Downloads/pafta_bolumlemesi.png)
```{r}
```
Bu pafta bölümlemelerinden 36 nolu bölümleme başkent Ankara’yı kapsadığı için, haritamızı 36 numaralı UTM zomuna tekabül eden EPSG kodu ile projekte edebiliriz. 36 numaralı UTM paftasının EPSG kodunu [internetten](https://epsg.io/32636) rahatlıkla buluruz! Buna göre 36 nolu UTM paftasının EPSG kodu 32636'dir. Hadi gelin bu bilgiyi shape file'imiz için güncelleyelim.
```{r}
turkey_utm <- st_transform(turkey, 32636)
st_crs(turkey_utm)
```
Görüldüğü gibi en alt satırdaki ID bilgisi ID["EPSG",32636]] olacak şekilde güncellenmiş oldu. Artık haritamız doğru bir şekilde görselleştirilmeye hazır.
(Bir bilgi: Aşağıdaki adresten kolayca Türkiye haritasının projeksiyonu için gerekli EPSG kodunu/kodlarını bulabiliriz.
<https://spatialreference.org/>)
```{r}
plot(turkey_utm)
```
# Eger Turkiye haritasini yanlis projekte ederseniz ne olur?
```{r}
turkey_wrongproj <- st_transform(turkey, 3338)
plot(turkey_wrongproj)
```
# Mekansal Veri Birlestirme (Spatial Data Merging)
```{r echo= TRUE}
turkey <- st_read("C:/Users/firat/Desktop/turkey_administrativelevels0_1_2/tur_polbnda_adm1.shp")
turkey
```
## Bir ID Sutunu Olusturmak: Plaka
```{r}
#install.packages("stringr")
library(stringr)
```
### ADM1 kolonunu sadelestirelim
```{r}
turkey$ADM1 = str_sub(turkey$ADM1,-2)
turkey
```
### ADM1 kolonundaki ilk 9 il icin bastaki sifirlari silelim
```{r}
turkey$ADM1[turkey$ADM1=="01"]<-"1"
turkey$ADM1[turkey$ADM1=="02"]<-"2"
turkey$ADM1[turkey$ADM1=="03"]<-"3"
turkey$ADM1[turkey$ADM1=="04"]<-"4"
turkey$ADM1[turkey$ADM1=="05"]<-"5"
turkey$ADM1[turkey$ADM1=="06"]<-"6"
turkey$ADM1[turkey$ADM1=="07"]<-"7"
turkey$ADM1[turkey$ADM1=="08"]<-"8"
turkey$ADM1[turkey$ADM1=="09"]<-"9"
turkey
```
### ADM1 kolonunun adini Plaka olarak degistirelim ve ID sutunumuzu olusturalim
```{r}
turkey <- turkey %>%
rename(Plaka = ADM1)
turkey
```
### Plaka kolonunu numeric yapalim
```{r}
turkey$Plaka <- as.numeric(as.character(turkey$Plaka))
```
### TUIK'ten alinan verileri shape file ile nasil birlestirebilirim?
```{r echo=FALSE}
nuts3 <- read.csv("C:/Users/firat/Desktop/Plaka_NUTS3_Cetveli.csv", header = TRUE)
nuts3
```
### Plaka kolonunu numeric yapalim
```{r}
nuts3$Plaka <- as.numeric(as.integer(nuts3$Plaka))
```
### Nuts3 kodlarini shape file ile merge edelim
```{r echo=TRUE}
turkey <- left_join(turkey, nuts3 , by = "Plaka")
turkey
```
```{r echo=FALSE}
tuik <- read.csv("C:/Users/firat/Desktop/Why_R_Turkey/R_ile_Mekansal_Analiz/df.csv", header = TRUE, check.names = TRUE )
tuik
```
```{r echo=FALSE}
turkey <- merge(turkey, tuik, by="NUTS3")
turkey
```
### Gereksiz kolonlardan kurtulalim
```{r echo= FALSE}
turkey <- select(turkey, -c(6,7))
turkey
```
### Son olarak da NUTS3.x ve City.x adlarini duzenleyelim
```{r echo=FALSE}
turkey <- turkey %>%
rename(Plaka = Plaka.x) %>%
rename(City = City.x)
turkey
```
## 5. Veri Gorsellestirme
```{r echo=TRUE}
ggplot(turkey) +
geom_sf(col = "blue")
```
## Statik Mekansal Veri Gorsellestirme
### ggplot
Aşağıdaki kodlar ggplot kütüphanesi ile oluşturulan çeşitli görselleştirmeleri içermektedir.
```{r echo= TRUE}
ggplot(data = turkey) +
geom_sf(aes(fill = gdp_pc20))+
labs(
fill = "",
title = paste0(
"GDP per capita ($) ",
"2020"))
```
```{r echo= TRUE}
ggplot(data = turkey) +
geom_sf(aes(fill = gdp_pc20))+
labs(
fill = "",
title = paste0(
"GDP per capita ($) ",
"2020")) +
scale_fill_continuous(trans = 'reverse')
```
### tmap
```{r}
library(tmap)
```
#### Basit gorsellestirme
```{r}
tm_shape(turkey) +
tm_polygons("gdp_pc20")
```
### tm_fill'de style argumani
tmap librarysi verileri manipule etmeden "style" argumanini degistirerek direkt olarak farkli turlerde harita olusturmaya izin vermektedir. Bu turler
+ Quantile map ==> style="quantile"
+ Natural Breaks map ==> style="jenks"
+ Equal Intervals map ==>style="equal"
+ Custom Breaks map ==> breaks=c(0,20,30,40,45,50,60)
+ Percentile map
+ Box map
+ Standard Deviation Map ==> style="sd"
+ Categoric Map ==> style="cat"
#### Gruplandirma sayisini 4'e indirelim, n = 4
```{r}
tm_shape(turkey) +
tm_polygons() +
tm_shape(turkey)+
tm_borders()+
tm_fill("gdp_pc20", n = 4, style = "quantile")
```
#### Legend'i disari alalim
```{r}
tm_shape(turkey) +
tm_polygons() +
tm_shape(turkey)+
tm_borders(col = "black", lwd = 2, lty = "solid", alpha = 0.5) +
tm_fill("gdp_pc20", n = 4, style = "quantile")+
tm_layout(legend.outside = TRUE)
```
#### Rengi degistirelim (palette = "BuPu") ve gruplari 4 esit parcaya gore siniflandiralim, style = ("equal")
```{r}
tm_shape(turkey) +
tm_borders(col = "black", lwd = 2, lty = "solid", alpha = 0.5) +
tm_shape(turkey)+
tm_borders(col = "black", lwd = 2, lty = "solid", alpha = 0.5) +
tm_fill("gdp_pc20", n = 4, palette = "BuPu", style = "equal")+
tm_layout(legend.outside = TRUE)
```
#### Bubble map yapalim
```{r}
tm_shape(turkey) +
tm_bubbles("gdp_pc20", n = 4, palette = "Blues", style = "equal")+
tm_layout(legend.outside = TRUE)
```
#### Bubbler poligon icinde olsun
```{r}
tm_shape(turkey) +
tm_borders(col = "black", lwd = 2, lty = "solid", alpha = 0.5) +
tm_shape(turkey)+
tm_borders(col = "black", lwd = 2, lty = "solid", alpha = 0.5) +
tm_bubbles("gdp_pc20", n = 4, palette = "Blues", style = "equal")+
tm_layout(legend.outside = TRUE)
```
#### 2 Degiskeni ayni anda normal ve bubble olarak haritalayalim
```{r}
tm_shape(turkey) +
tm_borders(col = "black", lwd = 2, lty = "solid", alpha = 0.5) +
tm_shape(turkey)+
tm_borders(col = "black", lwd = 2, lty = "solid", alpha = 0.5) +
tm_fill("gdp_pc20", n = 4, palette = "BuPu", style = "equal")+
tm_bubbles("lnM_20", n=4)+
tm_layout(legend.outside = TRUE)
```
#### Tek bir kolonda alt alta haritalayalim
```{r}
m1 <- tm_shape(turkey) +
tm_borders(col = "black", lwd = 2, lty = "solid", alpha = 0.5) +
tm_shape(turkey)+
tm_borders(col = "black", lwd = 2, lty = "solid", alpha = 0.5) +
tm_fill("gdp_pc20", n = 4, palette = "BuPu", style = "equal",
title = " GDP per capita, 2020 ")+
tm_layout(legend.outside = TRUE)
m2 <- tm_shape(turkey) +
tm_borders(col = "black", lwd = 2, lty = "solid", alpha = 0.5) +
tm_shape(turkey)+
tm_borders(col = "black", lwd = 2, lty = "solid", alpha = 0.5) +
tm_fill("lnM_20", n = 4, palette = viridisLite :: viridis (20), style = "quantile",
title = " Import, 2020 ")+
tm_layout(legend.outside = TRUE)
tmap_arrange(m1, m2, ncol = 1)
```
### Interactive Haritalama
```{r}
tmap_mode("view")
m1
```
### 3-D Mapping
```{r}
#install.packages("rayshader")
library(rayshader)
```
```{r eval = FALSE}
def_20 <- ggplot(data = turkey) +
geom_sf(aes(fill = Def_20)) +
scale_fill_viridis_c(option = "plasma", trans = "sqrt")+
ggtitle("2020 Deflator at the Province Level")
plot(def_20)
plot_gg(def_20,multicore=TRUE,width=6,height=6, scale=310, zoom = .25, offset_edges=TRUE, windowsize = c(900, 900))# Plot_gg de rayshader
render_snapshot(filename = "3D_deflator.png", clear = FALSE)
#parameters for 360 positions
phivechalf = 30 + 60 * 1/(1 + exp(seq(-7, 20, length.out = 180)/2))
phivecfull = c(rep("88.2", 30), phivechalf, rev(phivechalf))
thetavec = c(rep("0", 30), 0 + 60 * sin(seq(0,359,length.out = 360) * pi/180))
zoomvec = 0.25 + 0.4 * 1/(1 + exp(seq(-5, 20, length.out = 180)))
zoomvecfull = c(rep("0.65", 30),zoomvec, rev(zoomvec))
rayshader::render_movie(filename="def_20",
type='custom',
frames = 390,
fps=30,
phi = phivecfull,
zoom = zoomvecfull,
theta = thetavec
)
```
```{r warning=FALSE}
library(plotly)
```
```{r}
fig <- plot_geo(turkey)
fig
```
```{r}
plot_ly(turkey, split = ~City, color = ~gdp_pc20,
alpha = 1,
showlegend = FALSE)
```
## Mekansal Istatistik
### Komsuluk Matrisi (contiguity matrix)
```{r warning=FALSE}
library(rgeoda)
library(spdep)
library(splm)
library(stargazer)
library(sp)
library(purrr)
```
![](C:/Users/firat/Desktop/Why_R_Turkey/R_ile_Mekansal_Analiz/mekansal4.png)
```{r}
turkey_q <- poly2nb(turkey, queen = TRUE)
listw <- nb2listw(turkey_q)
summary(listw)
```
```{r}
str(turkey_q)
```
geometry kolonu enlem(latitude) ve boylam (longitude) bilgisini icermekteydi. O zaman buradan illerin enlem ve boylamlarini turetelim.
```{r}
longitude <- map_dbl(turkey$geometry, ~st_centroid(.x)[[1]])
latitude <- map_dbl(turkey$geometry, ~st_centroid(.x)[[2]])
coords <- cbind(longitude, latitude)
head(coords)
```
Ve agirlik matrisini gorsellestirelim
```{r}
plot(turkey_q, coords, lwd=.2, col="red", cex = .6)
```
### Moran's I ve LISA (Local Indicators of Spatial Association)
![](C:/Users/firat/Desktop/Why_R_Turkey/R_ile_Mekansal_Analiz/mekansal1.png)
![](C:/Users/firat/Desktop/Why_R_Turkey/R_ile_Mekansal_Analiz/mekansal2.png)
![](C:/Users/firat/Desktop/Why_R_Turkey/R_ile_Mekansal_Analiz/mekansal3.png)
![](C:/Users/firat/Desktop/Why_R_Turkey/R_ile_Mekansal_Analiz/mekansal5.png)
```{r}
globalMoran <- moran.test(turkey$gdp_pc20, listw)
globalMoran
```
```{r}
moran <- moran.plot(turkey$gdp_pc20, listw)
```
```{r}
queen_w <- queen_weights(turkey)
summary(queen_w)
```
### Komsulara ulasmak icin
```{r}
nbrs <- get_neighbors(queen_w, idx = 9)
cat("\nNeighbors of the 1-st observation are:", nbrs)
```
### LISA Map
![](C:/Users/firat/Desktop/Why_R_Turkey/R_ile_Mekansal_Analiz/mekansal6.png)
![](C:/Users/firat/Desktop/Why_R_Turkey/R_ile_Mekansal_Analiz/mekansal7.png)
local_moran fonksiyonu bir lisa objesi yaratacak, daha sonra da haritayi olustururken bu obje kollanilacak!
```{r}
gdp_pc20 = turkey["gdp_pc20"]
lisa <- local_moran(queen_w, gdp_pc20)
```
lisa_values function 81 il icin gdp_pc20'nin local Moran's I degerlerini verir.
```{r}
lms <- lisa_values(gda_lisa = lisa)
lms
```
Ayrica pseudo-p degerleri de elde ederiz
```{r}
pvals <- lisa_pvalues(lisa)
pvals
```
Anlamli olanlardan bir kume yaratmak icin 0.05 anlamliligi secebiliriz
```{r}
cats <- lisa_clusters(lisa, cutoff = 0.05)
cats
```
Bu rakamlar su anlamlara gelmektedir:
```{r}
# 0 Not significant
# 1 High-High
# 2 Low-Low
# 3 High-Low
# 4 Low-High
# 5 Undefined
# 6 Isolated
```
Bunlara etiket olarak lisa_labes fonksiyonu ile de ulasabiliriz
```{r}
lbls <- lisa_labels(lisa)
lbls
```
LISA MAP
```{r}
lisa_colors <- lisa_colors(lisa)
lisa_labels <- lisa_labels(lisa)
lisa_clusters <- lisa_clusters(lisa)
plot(st_geometry(turkey),
col=sapply(lisa_clusters, function(x){return(lisa_colors[[x+1]])}),
border = "#333333", lwd=0.2)
title(main = "LISA Map of GDP per capita, 2020")
legend('top', legend = lisa_labels, fill = lisa_colors, border = "#eeeeee")
```
### Mekansal Ekonometrik Modeller
![](C:/Users/firat/Desktop/Why_R_Turkey/R_ile_Mekansal_Analiz/mekansal8.png)
\begin{align*}
$y = \rho Wy + X\beta+u$ ==> SAR, Spatial Autoregressive Model
$Wy$ ==> Spatial Lag
$\rho$ ==> Spatial Autoregressive Coefficiant
$y = X\beta+u$
$u = \lambda Wu + e$ ==> SEM, Spatial Error Model
\end{align*}
```{r}
reg1 <- lm(AKP_18~ Mosq + CHP_18, data = turkey)
summary(reg1)
```
```{r}
lmMoranTest <- lm.morantest(reg1,listw)
lmMoranTest
```
```{r}
lmLMtests <- lm.LMtests(reg1, listw, test=c("LMerr", "LMlag", "RLMerr", "RLMlag", "SARMA"))
lmLMtests
```
```{r warning= FALSE}
reg2 <- errorsarlm(AKP_18~ Mosq + CHP_18, data=turkey, listw)
summary(reg2)
```
## Regression Output
![](C:/Users/firat/Desktop/Why_R_Turkey/R_ile_Mekansal_Analiz/mekansal9.png)