-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathKCB_Report.Rmd
4615 lines (3481 loc) · 213 KB
/
KCB_Report.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
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
---
title: "KCB 금융스타일 시각화 경진대회 보고서"
date: "`r Sys.Date()`"
author: "김하영, 배현주, 이승훈, 정회빈, 조윤영"
output:
rmdformats::readthedown:
code_folding: hide
self_contained: true
thumbnails: false
lightbox: false
number_sections: true
toc_float:
collapsed: false
smooth_scroll: false
---
```{r setup, include=FALSE}
knitr::opts_chunk$set(echo=T, cache=T, comment="", message=F, warning=F)
```
# 라이브러리 불러오기
```{r Load libraries, warning=F, message=F}
if (!require(rmdformats)) install.packages("rmdformats", type="source")
library(tidyverse)
if (!require(gifski)) install.packages("gifski", type="source")
library(gganimate) # gifski 패키지가 설치되어 있어야 한다.
library(ggthemes)
library(ggpubr)
library(gridExtra) # grid.arrange
library(plotly)
library(corrplot)
library(DT) # datatable
library(cluster)
library(fpc)
library(factoextra)
library(ggfortify) # autoplot
library(RColorBrewer)
library(MASS)
library(raster) # shapefile
library(rgdal) # spTransform
library(maptools)
if (!require(gpclib)) install.packages("gpclib", type="source")
```
```{r gpclibPermit, echo=F, results=F}
gpclibPermit()
```
# credit_card_data
## 데이터 불러오기
```{r Load data1, message=F}
data1 <- read_csv("credit_card_data.csv")
data1$year <- as.integer(data1$year)
data1$month <- as.integer(data1$month)
data1 <- data1[,c(1:12, 25:26, 13:24)] # 카드 관련 변수끼리 묶어주기 위해 칼럼 순서를 바꿈
## split data by pop_cd
data1_L <- data1 %>% filter(is.na(sex)==1) %>% dplyr::select(-sex)
data1_Y <- data1 %>% filter(is.na(city)==1) %>% dplyr::select(-city)
cat_var <- c(colnames(data1_L)[sapply(data1_L, class)=="character"], c("year", "month"))
num_var <- setdiff(colnames(data1_L), cat_var)
data1_L$city <- factor(data1_L$city, levels=c("서울", "경기", "인천", "부산", "울산", "대구", "대전", "광주", "경남", "경북", "충남", "충북", "전남", "전북", "강원", "제주"))
```
데이터를 data1_L과 data1_Y로 나누었다. data1_L은 지역별 데이터이고, data1_Y는 성별 데이터이다. 지역 정보가 있는 행에는 성별 정보가 없고 성별 정보가 있는 행에는 지역 정보가 없어서 이렇게 분할하였다.
---
## 외부 데이터
```{r shapefile}
# 지도 시각화를 위한 shapefile
korea <- shapefile("CTPRVN_201703/TL_SCCO_CTPRVN.shp")
korea <- spTransform(korea, CRS("+proj=longlat"))
korea_map <- fortify(korea)
data1_L <- data1_L %>% mutate(id = case_when(city=="서울" ~ "0",
city=="부산" ~ "1",
city=="대구" ~ "2",
city=="인천" ~ "3",
city=="광주" ~ "4",
city=="대전" ~ "5",
city=="울산" ~ "6",
city=="세종" ~ "7",
city=="경기" ~ "8",
city=="강원" ~ "9",
city=="충북" ~ "10",
city=="충남" ~ "11",
city=="전북" ~ "12",
city=="전남" ~ "13",
city=="경북" ~ "14",
city=="경남" ~ "15",
city=="제주" ~ "16"))
```
+ 지도 시각화를 하려면 shapefile을 다운받아야 한다.
+ shapefile은 [http://www.gisdeveloper.co.kr/?p=2332](http://www.gisdeveloper.co.kr/?p=2332)에서 다운로드 할 수 있다.
+ rmarkdown 파일이 있는 디렉토리에서 CTPRVN_201703 폴더에 `TL_SCCO_CTPRVN.dbf`, `TL_SCCO_CTPRVN.prj`, `TL_SCCO_CTPRVN.shp`, `TL_SCCO_CTPRVN.shx` 파일이 있어야 위의 코드가 실행된다.
---
통계청(KOSIS)의 "행정구역(읍면동)별/5세별 주민등록인구(2011년~) 데이터" 중 2016년 1월부터 2017년 12월 자료
```{r Preprocessing external data}
data_pop <- read_csv('population_data_data1.csv')
data_pop_L1 <- data_pop %>%
filter(sex=="총인구수" & !city=="전국" & !(year==2016 & month==1)) %>%
group_by(city,ages) %>%
summarise(population=mean(population,na.rm=T))
data_pop_L2 <- data_pop_L1 %>%
filter(ages %in% c("100+", "90대") & !city=="세종특별자치시") %>%
group_by(city) %>%
summarise(population=sum(population,na.rm=T))
ages <- rep("90대",nrow (data_pop_L2))
data_pop_L2 <- cbind(data_pop_L2,ages)[,c(1,3,2)]
data_pop_L3 <- data_pop_L1 %>%
filter(!(ages %in% c("100+", "90대")) & !city=="세종특별자치시")
data_pop_L <- rbind(data.frame(data_pop_L3),data.frame(data_pop_L2))
data_pop_L <- data_pop_L[order(data_pop_L$city),]
data_pop_Y1 <- data_pop %>%
filter(!sex=="총인구수" & city=="전국" & !(year==2016 & month==1)) %>%
group_by(sex, ages) %>%
summarise(population=mean(population, na.rm=T))
data_pop_Y2 <- data_pop_Y1 %>%
filter(ages %in% c("100+", "90대")) %>%
group_by(sex) %>%
summarise(population=sum(population,na.rm=T))
ages <- rep("90대", nrow (data_pop_Y2))
data_pop_Y2 <- cbind(data_pop_Y2,ages)[, c(1,3,2)]
data_pop_Y3 <- data_pop_Y1 %>% filter(!(ages %in% c("100+", "90대")))
data_pop_Y <- rbind(data.frame(data_pop_Y3),data.frame(data_pop_Y2))
data_pop_Y <- data_pop_Y[order(data_pop_Y$sex),]
```
---
## 전처리
```{r total_loan}
# 대출 항목 정보에 따라 합계 변수 생성
data1_L <- data1_L %>%
mutate(total_loan1 = monthly_bk_loan +
monthly_cd_loan +
monthly_installments_loan +
monthly_insurance_loan +
monthly_sbk_loan,
total_loan2 = loan_commitment + inst_rep_loanb + ls_rep_loanb,
total_loan3 = credit_loan + mortgage_loan)
data1_Y <- data1_Y %>%
mutate(total_loan1 = monthly_bk_loan +
monthly_cd_loan +
monthly_installments_loan +
monthly_insurance_loan +
monthly_sbk_loan,
total_loan2 = loan_commitment + inst_rep_loanb + ls_rep_loanb,
total_loan3 = credit_loan + mortgage_loan)
```
변수 설명을 보면 대출금액은
+ 개인대출정보 항목에 따라 은행업종, 카드업종, 할부금융업종, 보험업종, 저축은행업종 대출금액으로 구분된다.
+ 거래형태코드에 따라 한도대출, 분할상환대출, 일시상환대출로 구분된다.
+ 신용/담보 대출이 구분된다.
각 항목에 따른 비율을 확인하기 위해 항목별 합계를 계산하여 개인대출정보 항목의 합은 total_loan1, 거래형태코드 항목의 합은 total_loan2, 신용/담보 대출의 합은 total_loan3으로 명명하여 새로운 변수를 생성하였다.
---
추가로 지역&연령별, 성별&연령별각 변수의 평균을 계산하여, 각 pop_cd 별로 하나의 obs를 가지는 자료를 생성하였다.
```{r mean}
data1_L_mean <- data1_L %>%
group_by(city,ages) %>%
summarise_each(mean, num_var)
data1_L_mean_ID <- paste0(data1_L_mean$city,data1_L_mean$ages)
data1_L_mean <- as.data.frame(data1_L_mean)
rownames(data1_L_mean) <- data1_L_mean_ID
data1_Y_mean <- data1_Y %>%
group_by(sex,ages) %>%
summarise_each(mean, num_var)
data1_Y_mean_ID <- paste0(data1_Y_mean$sex,data1_Y_mean$ages)
data1_Y_mean <- as.data.frame(data1_Y_mean)
rownames(data1_Y_mean) <- data1_Y_mean_ID
```
---
## 변수별 시각화 {.tabset}
> 변수명이 적혀있는 탭을 누르면 각 변수별 시각화 결과를 볼 수 있다.
### 고객 인원수(population)
먼저 해당그룹 고객 인원수를 나타내는 population 변수를 살펴보자.
```{r population1}
data1_L %>% group_by(year, month) %>% summarise(total_pop=sum(population)) %>% datatable(rownames = F)
```
+ credit_card_data는 고객구분 코드별로 표본추출해서 만든 데이터가 아니라 KCB DB에 있는 모든 데이터에 대해 고객구분 코드별로 평균을 취해서 만든 데이터로 보인다.
+ 2016년 1월 데이터만 유독 전체 population 값이 작은 것을 볼 수 있다. 이어지는 내용에서 변수별 시각화를 했을 때 2016년 1월 데이터가 특이값으로 나타났다.
```{r population2}
data1_Y %>% group_by(year, month) %>% summarise(total_pop=sum(population)) %>% datatable(rownames = F)
```
+ 성별 데이터의 population 값을 지역별 데이터의 population 값과 비교해보면 기간별 population의 총합이 다른 것을 알 수 있다.
+ 전체 DB에서 지역 정보있는 고객 데이터가 성별 정보가 있는 고객 데이터보다 적다고 추측해 볼 수 있다.
**(1)** 2016년의 월별 population 변화 - 누적막대그래프
```{r population3, fig.width=6, fig.height=4}
p <- data1_L %>% filter(year==2016) %>%
ggplot(aes(x=city, y=population, fill=ages)) +
geom_bar(aes(group=month),alpha=0.9, stat="identity") +
theme_bw() +
scale_fill_tableau() +
transition_time(month) + labs(title = "2016년 {frame_time}월")
gganimate::animate(p, fps=5, end_pause = 10, width=600, height=400)
```
+ 2016년 1월을 제외하고는 거의 비슷한 패턴을 보인다.
**(2)** 2017년의 월별 population 변화 - 누적막대그래프
```{r population4, fig.width=6, fig.height=4}
p <- data1_L %>% filter(year==2017) %>%
ggplot(aes(x=city, y=population, fill=ages)) +
geom_bar(aes(group=month),alpha=0.9, stat="identity") +
theme_bw() +
scale_fill_tableau() +
transition_time(month) + labs(title = "2017년 {frame_time}월")
gganimate::animate(p, fps=5, end_pause = 10, width=600, height=400)
```
+ 2017년의 population 값은 월별 편차가 크지 않다.
**(3)** 2016년의 월별 population 변화 - 누적막대그래프(연령대 별 비율)
```{r population5, fig.width=6, fig.height=4}
p <- data1_L %>% filter(year==2016) %>%
ggplot(aes(x=city, y=population, fill=ages)) +
geom_bar(aes(group=month),alpha=0.9, stat="identity", position="fill") +
theme_bw() +
scale_fill_tableau() +
transition_time(month) + labs(title = "2016년 {frame_time}월")
gganimate::animate(p, fps=5, end_pause = 10, width=600, height=400)
```
+ 2016년 1월의 10대 비율이 다른 기간에 비해 유독 작다.
**(4)** 2017년의 월별 population 변화 - 누적막대그래프(연령대 별 비율)
```{r population6, fig.width=6, fig.height=4}
p <- data1_L %>% filter(year==2017) %>%
ggplot(aes(x=city, y=population, fill=ages)) +
geom_bar(aes(group=month), alpha=0.9, stat="identity", position="fill") +
theme_bw() +
scale_fill_tableau() +
transition_time(month) + labs(title = "2017년 {frame_time}월")
gganimate::animate(p, fps=5, end_pause = 10, width=600, height=400)
```
+ 2017년의 population 값의 비율은 월별 편차가 크지 않다.
**(5)** 성별 연령대별 고객 인원 수의 상자그림
```{r population7, fig.width=6, fig.height=4}
data1_Y %>% ggplot(aes(x=ages, y=population, fill=sex)) +
geom_boxplot(alpha=0.7) +
theme_bw() +
scale_fill_fivethirtyeight() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=15)) +
ggtitle("성별 연령대별 고객 인원 수")
```
+ 10대 ~ 70대까지는 남자가 여자보다 더 많은 편이고, 80대와 90대는 여자가 남자보다 조금 더 많다.
**(6)** 실제 총 인구 수와의 비교
```{r population8, fig.width=6, fig.height=5}
pop_data_L <- full_join(data1_L_mean, data_pop_L, by=c("city", "ages"))
# cor.test(pop_data_L$population.x,pop_data_L$population.y)$estimate
pop_data_Y <- full_join(data1_Y_mean, data_pop_Y, by=c("sex", "ages"))
# cor.test(pop_data_Y$population.x,pop_data_Y$population.y)$estimate
pop_data_L %>%
ggplot(aes(x=population.x, y=population.y))+
xlab("KCB data population")+ ylab("Real population")+
ggtitle("연령별 지역별 실제 총 인구수와 비교")+
geom_point(aes(col=ages), size=3, alpha=0.5) +
theme_bw() + scale_color_tableau() +
theme(plot.title = element_text(hjust = 0.5, size=15)) +
xlim(0, 2500000)+ ylim(0, 2500000) +
geom_abline(intercept = 0, slope=1, linetype="dashed", color="red", size=1)
pop_data_Y %>%
ggplot(aes(x=population.x, y=population.y))+
xlab("KCB data population")+ylab("Real population")+
ggtitle("연령별 성별 실제 총 인구수와 비교")+
geom_point(aes(col=ages,shape=sex), size=3, alpha=0.5) +
theme_bw() + scale_color_tableau() +
theme(plot.title = element_text(hjust = 0.5, size=15)) +
geom_abline(intercept = 0, slope=1, linetype="dashed", color="red", size=1)
```
+ 실제 총 인구와 KCB 데이터의 총 인구 변수간의 강한 선형관계(연령별 지역별 자료 : 0.968, 연령별 성별 자료 : 0.954)가 있으므로 위의 데이터가 성별, 연령별, 지역별 인구를 대표하고 있다고 할 수 있고, population이라는 변수를 단순히 지역코드에 포함된 데이터의 수를 넘어 그 도시와 연령의 실제 인구 크기를 나타내는 변수로 볼 수 있다.
+ 10대는 전체 인구수보다 작기 때문에 해석에서 주의를 요구한다.
+ 10대를 제외하고는 실제 인구보다 KCB데이터의 인구수가 많은 것으로 보아, 같은 사람에 대해 중복된 데이터가 있는지 확인할 필요가 있다.
> End of Tab
---
### 평균 신용점수(avg_score)
먼저 신용점수 변수에 대한 시각화를 진행하였다.
```{r avg_score1, fig.width=8, fig.height=4}
data1_L %>% ggplot(aes(x=ages, y=avg_score, fill=city)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=15)) +
ggtitle("지역별 연령대별 평균 신용점수")
```
+ 상자그림에서 특이값들이 발견되었는데, 확인결과 모두 2016년 1월에 데이터임을 알 수 있었으며, 다른 변수들에 대해 탐색해본 결과에서도 2016년 1월 데이터가 특이값으로 잡히는 경우가 많았다. 그래서 이어지는 내용에서는 2016년 1월 데이터를 제외하고 분석을 진행하였다.
```{r delete 201601}
data1_L <- data1_L %>% filter(!(year==2016 & month==1))
data1_Y <- data1_Y %>% filter(!(year==2016 & month==1))
```
```{r avg_score2, fig.width=5, fig.height=4}
temp <- data1_L %>% group_by(id) %>% summarise(avg_score=mean(avg_score))
merge_result <- inner_join(korea_map, temp, by = "id")
merge_result %>% ggplot(aes(x=long, y=lat, group=group, fill=avg_score)) +
geom_polygon(color="white") + labs(title="지역별 평균 신용점수") +
scale_fill_gradient(high="red", low="lavenderblush") +
theme_bw() +
theme(legend.title = element_blank(), aspect.ratio = 1,
plot.title = element_text(hjust = 0.5, size=15))
```
+ 평균 신용점수의 지역별 평균값은 서울, 대전, 대구 등 대도시는 높게 나타났고, 강원, 충남, 전북, 전남은 낮게 나타났다.
```{r avg_score4, fig.width=13, fig.height=12}
data1_L %>% ggplot(aes(x=ages, y=avg_score, fill=ages)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20)) +
scale_fill_tableau() +
facet_wrap(~city, ncol=4, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 평균 신용점수")
```
+ 서울과 경기는 30대에 비해 40대와 50대로 가면서 평균 신용점수가 낮아지고, 60대와 70대까지는 높아지다가 다시 90대로 가면서 낮아지는 형태이다.
+ 인천, 부산, 강원은 30대로 가면서 평균 신용점수가 높아지다가 40대에서 낮아지고 50대 ~ 70대 까지 다시 높아지다 80대에서 다시 낮아지는 패턴을 보인다.
+ 대구, 대전, 광주, 충남, 충북, 전북, 제주는 70대까지 평균 신용점수가 대체로 높아지는 패턴을 보이고, 70대에서 평균 신용점수가 가장 높다.
+ 울산, 경남, 경북은 60대까지 대체로 평균 신용점수가 높아지는 패턴을 보이고, 60대에서 평균 신용점수가 가장 높다.
+ 전남은 다른 지역과는 달리 90대의 평균 신용점수가 가장 높다.
```{r avg_score5, fig.width=10, fig.height=9}
data1_L %>% ggplot(aes(x=city, y=avg_score, fill=city)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20),
axis.text.x = element_text(angle=90, vjust=0.3, size=12)) +
facet_wrap(~ages, ncol=3, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 평균 신용점수")
```
+ 10대를 제외하고는 지역별 편차가 상당히 큰 것을 알 수 있다. 전반적으로 서울의 평균 신용점수가 다른 지역보다 높은데, 50대의 경우 서울의 평균 신용점수는 다른 연령대 서울의 평균 신용점수에 비해 낮았고, 울산의 평균 신용점수가 가장 높다. 제주의 평균 신용점수는 전 연령대에서 낮은 편이고, 전반적으로 전남지역이 가장 낮은 평균 신용점수를 보이는 것을 확인할 수 있다.
```{r avg_score6, fig.width=6, fig.height=4}
data1_Y %>% ggplot(aes(x=ages, y=avg_score, fill=sex)) +
geom_boxplot(alpha=0.3) + theme_bw() +
scale_fill_fivethirtyeight() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=15)) +
ggtitle("성별 연령대별 평균 신용점수")
```
10대 ~ 60대까지는 여자의 신용 점수가 남자의 신용 점수보다 높게 나타났고, 70대 ~ 90대는 남자의 신용 점수가 여자의 신용 점수보다 높은 특성을 보인다. 30대 ~ 50대에서 신용점수의 남녀 격차가 상당히 큰 것으로 나타났다.
> End of Tab
---
### 평균 신용등급(avg_rat)
고객구분 코드 그룹의 평균 신용등급
```{r avg_rat1, fig.width=5, fig.height=4}
temp <- data1_L %>% group_by(id) %>% summarise(avg_rat=mean(avg_rat))
merge_result <- inner_join(korea_map, temp, by = "id")
merge_result %>% ggplot(aes(x=long, y=lat, group=group, fill=avg_rat)) +
geom_polygon(color="white") + labs(title="지역별 평균 신용등급") +
scale_fill_gradient(high="red", low="lavenderblush") +
theme_bw() +
theme(legend.title = element_blank(), aspect.ratio = 1,
plot.title = element_text(hjust = 0.5, size=15))
```
+ 지도상에는 강원, 전남, 광주, 인천의 평균 신용등급의 지역별 평균값이 좋지 않은 것으로 나타났는데, 그 차이는 크지 않았다.
```{r avg_rat2, fig.width=6, fig.height=4, out.width="60%"}
p1 <- data1_L %>% mutate(avg_rat=factor(avg_rat)) %>%
ggplot(aes(x=avg_rat, fill=avg_rat)) +
geom_bar(width = 0.5, alpha=0.7) + ylim(0, 3000) +
geom_text(stat='count', aes(label=..count..), vjust=-0.5, color="black", size=4) +
theme_bw() +
scale_fill_fivethirtyeight(label=c("3등급", "4등급")) +
theme(legend.position="bottom", legend.direction="horizontal",
legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=15)) +
ggtitle("avg_rat(지역별 데이터)")
p2 <- data1_Y %>% mutate(avg_rat=factor(avg_rat)) %>%
ggplot(aes(x=avg_rat, fill=avg_rat)) +
geom_bar(width = 0.5, alpha=0.7) + ylim(0, 350) +
geom_text(stat='count', aes(label=..count..), vjust=-0.5, color="black", size=4) +
theme_bw() +
scale_fill_fivethirtyeight(label=c("3등급", "4등급")) +
theme(legend.position="bottom", legend.direction="horizontal",
legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=15)) +
ggtitle("avg_rat(성별 데이터)")
grid.arrange(p1, p2, ncol=2)
```
+ 지역별 데이터와 성별 데이터에서 평균 신용등급의 막대그래프를 그려본 결과 3등급과 4등급만 존재한다. 평균 신용등급(avg_rat)보다는 평균 신용점수(avg_score)를 보는 것이 좋아보인다.
> End of Tab
---
### 총 개설 카드수(num_opencard)
총 개설 카드수: 기준일 현재 전체카드(신용카드/체크카드/신용카드+체크카드) 개설정보의 총 건수
```{r num_opencard1, fig.width=5, fig.height=4}
temp <- data1_L %>% group_by(id) %>% summarise(num_opencard=mean(num_opencard))
merge_result <- inner_join(korea_map, temp, by = "id")
merge_result %>% ggplot(aes(x=long, y=lat, group=group, fill=num_opencard)) +
geom_polygon(color="white") + labs(title="지역별 총 개설 카드수") +
scale_fill_gradient(high="red", low="lavenderblush") +
theme_bw() +
theme(legend.title = element_blank(), aspect.ratio = 1,
plot.title = element_text(hjust = 0.5, size=15))
```
+ 서울, 경기, 대전, 대구, 부산 등 대도시의 총 개설 카드수의 지역별 평균값이 크다.
```{r num_opencard3, fig.width=13, fig.height=12}
data1_L %>% ggplot(aes(x=ages, y=num_opencard, fill=ages)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20)) +
scale_fill_tableau() +
facet_wrap(~city, ncol=4, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 총 개설 카드수")
```
+ 총 개설 카드수의 연령대에 따른 패턴은 지역에 따라 크게 다르지 않았다.
```{r num_opencard4, fig.width=10, fig.height=9}
data1_L %>% ggplot(aes(x=city, y=num_opencard, fill=city)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20),
axis.text.x = element_text(angle=90, vjust=0.3, size=12)) +
facet_wrap(~ages, ncol=3, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 총 개설 카드수")
```
+ 30대 까지는 총 개설 카드수가 증가하다가 그 이후부터 계속 감소하는데, 20대 ~ 50대 광주의 총 개설 카드수가 크게 나타났다.
```{r num_opencard5, fig.width=6, fig.height=4}
data1_Y %>% ggplot(aes(x=ages, y=num_opencard, fill=sex)) +
geom_boxplot(alpha=0.3) + theme_bw() +
scale_fill_fivethirtyeight() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=15)) +
ggtitle("성별 연령대별 총 개설 카드수")
```
+ 20대 ~ 50대는 여자가 남자보다 카드를 더 많이 개설하고, 30대 여자가 카드를 가장 많이 개설하는 편이다.
> End of Tab
---
### 실제 사용 카드수(num_usecard)
실제 사용 카드수: 기준일로부터 6개월내 총 이용금액 > 0인 전체카드(신용카드/체크카드/신용카드+체크카드)의 월별 등록기관 수의 합 중 최고값
```{r num_usecard1, fig.width=5, fig.height=4}
temp <- data1_L %>% group_by(id) %>% summarise(num_usecard=mean(num_usecard))
merge_result <- inner_join(korea_map, temp, by = "id")
merge_result %>% ggplot(aes(x=long, y=lat, group=group, fill=num_usecard)) +
geom_polygon(color="white") + labs(title="지역별 실제 사용 카드수") +
scale_fill_gradient(high="red", low="lavenderblush") +
theme_bw() +
theme(legend.title = element_blank(), aspect.ratio = 1,
plot.title = element_text(hjust = 0.5, size=15))
```
+ 서울, 경기, 대전, 대구, 부산 등 대도시 총 개설 카드수의 지역별 평균값이 큰 지역은 실제 사용 카드수의 지역별 평균값도 크다.
```{r num_usecard3, fig.width=13, fig.height=12}
data1_L %>% ggplot(aes(x=ages, y=num_usecard, fill=ages)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20)) +
scale_fill_tableau() +
facet_wrap(~city, ncol=4, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 실제 사용 카드수")
```
+ 실제 사용 카드수의 연령대에 따른 패턴은 지역에 따라 크게 다르지 않았다.
```{r num_usecard4, fig.width=10, fig.height=9}
data1_L %>% ggplot(aes(x=city, y=num_usecard, fill=city)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20),
axis.text.x = element_text(angle=90, vjust=0.3, size=12)) +
facet_wrap(~ages, ncol=3, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 실제 사용 카드수")
```
+ 실제 사용 카드수는 지역보다는 연령대에 따른 차이가 더 크다.
```{r num_usecard5, fig.width=6, fig.height=4}
data1_Y %>% ggplot(aes(x=ages, y=num_usecard, fill=sex)) +
geom_boxplot(alpha=0.3) + theme_bw() +
scale_fill_fivethirtyeight() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=15)) +
ggtitle("성별 연령대별 실제 사용 카드수")
```
+ 총 개설 카드수와 같은 패턴을 보인다. 20대 ~ 50대는 여자가 남자보다 카드를 더 많이 개설하고, 30대 여자가 카드를 가장 많이 개설하는 편이다.
---
개설 카드 중 실제 사용하는 카드의 비율을 num_usecard/num_opencard로 구하여 살펴보았다.
```{r num_usecard ratio2, fig.width=13, fig.height=12}
data1_L %>% ggplot(aes(x=ages, y=num_usecard/num_opencard, fill=ages)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20)) +
scale_fill_tableau() +
facet_wrap(~city, ncol=4, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 실제 개설 카드수의 비율")
```
+ 개설 카드 중 실제 사용카드 수의 비율의 연령대에 따른 패턴은 지역에 따라 크게 다르지 않았다.
```{r num_usecard ratio3, fig.width=10, fig.height=9}
data1_L %>% ggplot(aes(x=city, y=num_usecard/num_opencard, fill=city)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20),
axis.text.x = element_text(angle=90, vjust=0.3, size=12)) +
facet_wrap(~ages, ncol=3, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 실제 개설 카드수의 비율")
```
+ 10대 ~ 70대 까지는 대체로 개설한 카드 중 절반정도를 실제 사용하는 것으로 보인다.
```{r num_usecard ratio4, fig.width=6, fig.height=4}
data1_Y %>% ggplot(aes(x=ages, y=num_usecard/num_opencard, fill=sex)) +
geom_boxplot(alpha=0.3) + theme_bw() +
scale_fill_fivethirtyeight() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=15)) +
ggtitle("성별 연령대별 실제 사용 카드수의 비율")
```
+ 10대와 30대 ~ 50대는 성별에 따른 실제 사용 카드수의 비율 차이가 거의 없었고, 70대 ~ 90대는 남자가 여자보다 개설한 카드 중 실제 사용하는 카드의 비율이 높은 것으로 나타났다.
> End of Tab
---
### 월 카드 총 이용금액(monthly_card_spend)
월 카드 총 이용금액: 기준일로부터 1개월내 전체카드(신용카드/체크카드/신용카드+체크카드)의 총 이용금액의 월별 합
```{r monthly_card_spend1,fig.width=5, fig.height=4}
temp <- data1_L %>% group_by(id) %>% summarise(monthly_card_spend=mean(monthly_card_spend))
merge_result <- inner_join(korea_map, temp, by = "id")
merge_result %>% ggplot(aes(x=long, y=lat, group=group, fill=monthly_card_spend)) +
geom_polygon(color="white") + labs(title="지역별 월 카드 총 이용금액") +
scale_fill_gradient(high="red", low="lavenderblush") +
theme_bw() +
theme(legend.title = element_blank(), aspect.ratio = 1,
plot.title = element_text(hjust = 0.5, size=15))
```
+ 지역별 월 카드 총 이용금액의 평균은 서울, 경기, 제주에서 특히 높게 나타났다.
```{r monthly_card_spend3, fig.width=13, fig.height=12}
data1_L %>% ggplot(aes(x=ages, y=monthly_card_spend, fill=ages)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20)) +
scale_fill_tableau() +
facet_wrap(~city, ncol=4, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 월 카드 총 이용금액")
```
+ 월 카드 총 이용금액의 연령대에 따른 패턴은 지역에 따라 크게 다르지 않았다.
```{r monthly_card_spend4, fig.width=10, fig.height=9}
data1_L %>% ggplot(aes(x=city, y=monthly_card_spend, fill=city)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20),
axis.text.x = element_text(angle=90, vjust=0.3, size=12)) +
facet_wrap(~ages, ncol=3, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 월 카드 총 이용금액")
```
+ 30대 ~ 60대는 제주의 월 카드 총 이용금액이 다른 지역보다 크고, 80대와 90대는 서울의 월 카드 이용 금액이 다른 지역보다 크다.
```{r monthly_card_spend5, fig.width=6, fig.height=4}
data1_Y %>% ggplot(aes(x=ages, y=monthly_card_spend, fill=sex)) +
geom_boxplot(alpha=0.3) + theme_bw()+
scale_fill_fivethirtyeight() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=15)) +
ggtitle("성별 연령대별 월 카드 총 이용금액")
```
+ 10대와 20대를 제외한 다른 연령대에서는 남자의 월 카드 총 이용금액이 여자의 월 카드 총 이용금액보다 크다.
> End of Tab
---
### 신용카드 일시불 이용금액(credit_card_payment)
신용카드 일시불 이용금액 : 1개월내 신용카드(신용카드/신용카드+체크카드)의 일시불 이용금액의 합
```{r credit_card_payment1, fig.width=5, fig.height=4}
temp <- data1_L %>% group_by(id) %>% summarise(credit_card_payment=mean(credit_card_payment))
merge_result <- inner_join(korea_map, temp, by = "id")
merge_result %>% ggplot(aes(x=long, y=lat, group=group, fill=credit_card_payment)) +
geom_polygon(color="white") + labs(title="지역별 신용카드 일시불 이용금액") +
scale_fill_gradient(high="red", low="lavenderblush") +
theme_bw() +
theme(legend.title = element_blank(), aspect.ratio = 1,
plot.title = element_text(hjust = 0.5, size=15))
```
+ 지역별 신용카드 일시불 이용금액의 평균은 서울, 경기, 제주에서 크게 나타났다.
```{r credit_card_payment3, fig.width=13, fig.height=12}
data1_L %>% ggplot(aes(x=ages, y=monthly_card_spend, fill=ages)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20)) +
scale_fill_tableau() +
facet_wrap(~city, ncol=4, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 신용카드 일시불 이용금액")
```
+ 신용카드 일시불 이용금액의 연령대에 따른 패턴은 지역에 따라 크게 다르지 않았다.
```{r credit_card_payment4, fig.width=10, fig.height=9}
data1_L %>% ggplot(aes(x=city, y=monthly_card_spend, fill=city)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20),
axis.text.x = element_text(angle=90, vjust=0.3, size=12)) +
facet_wrap(~ages, ncol=3, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 신용카드 일시불 이용금액")
```
+ 30대 ~ 60대에서 서울과 제주의 신용카드 일시불 이용금액이 크게 나타나며, 80대, 90대는 서울이 다른 지역에 비해 신용카드 일시불 이용금액이 상당히 큰 편이다.
```{r credit_card_paymen5, fig.width=6, fig.height=4}
data1_Y %>% ggplot(aes(x=ages, y=credit_card_payment, fill=sex)) +
geom_boxplot(alpha=0.3) + theme_bw()+
scale_fill_fivethirtyeight() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=15)) +
ggtitle("성별 연령대별 신용카드 일시불 이용금액")
```
+ 성별 연령대별 신용카드 일시불 이용금액은 월 카드 총 이용금액과 같은 패턴을 보인다. 10대와 20대를 제외한 다른 연령대에서는 여자보다 남자의 신용카드 일시불 이용금액보다 크다.
> End of Tab
---
### 신용카드 할부 이용금액(credit_card_installments_payment)
신용카드 할부 이용금액: 1개월내 신용카드(신용카드/신용카드+체크카드)의 할부이용금액의 합
```{r credit_card_installments_payment1,fig.width=5, fig.height=4}
temp <- data1_L %>% group_by(id) %>% summarise(credit_card_installments_payment=mean(credit_card_installments_payment))
merge_result <- inner_join(korea_map, temp, by = "id")
merge_result %>% ggplot(aes(x=long, y=lat, group=group, fill=credit_card_installments_payment)) +
geom_polygon(color="white") + labs(title="지역별 신용카드 할부 이용금액") +
scale_fill_gradient(high="red", low="lavenderblush") +
theme_bw() +
theme(legend.title = element_blank(), aspect.ratio = 1,
plot.title = element_text(hjust = 0.5, size=15))
```
+ 신용카드 일시불 이용금액과 마찬가지로 지역별 신용카드 할부 이용금액의 평균은 서울, 경기, 제주가 높게 나타났고, 부산이 특히 높다.
```{r credit_card_installments_payment3, fig.width=13, fig.height=12}
data1_L %>% ggplot(aes(x=ages, y=credit_card_installments_payment, fill=ages)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20)) +
scale_fill_tableau() +
facet_wrap(~city, ncol=4, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 신용카드 할부 이용금액")
```
+ 신용카드 할부 이용금액의 연령대에 따른 패턴은 지역에 따라 크게 다르지 않았다.
```{r credit_card_installments_payment4, fig.width=10, fig.height=9}
data1_L %>% ggplot(aes(x=city, y=credit_card_installments_payment, fill=city)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20),
axis.text.x = element_text(angle=90, vjust=0.3, size=12)) +
facet_wrap(~ages, ncol=3, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 신용카드 할부 이용금액")
```
+ 신용카드 할부 이용금액은 30대 ~ 60대에서는 부산과 제주의 값이 크게 나타났다.
```{r credit_card_installments_payment5, fig.width=6, fig.height=4}
data1_Y %>% ggplot(aes(x=ages, y=credit_card_installments_payment, fill=sex)) +
geom_boxplot(alpha=0.3) + theme_bw() +
scale_fill_fivethirtyeight() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=15)) +
ggtitle("성별 연령대별 신용카드 할부 이용금액")
```
+ 80대와 90대를 제외한 전 연령대에서 남자보다 여자의 신용카드 할부 이용 금액이 더 크다.
> End of Tab
---
### 총 대출약정금액(monthly_lc)
총 대출약정금액: KCB에 등록된 대출개설정보 중 개인대출정보의 대출 약정금액의 합
```{r monthly_lc1,fig.width=5, fig.height=4}
temp <- data1_L %>% group_by(id) %>% summarise(monthly_lc=mean(monthly_lc))
merge_result <- inner_join(korea_map, temp, by = "id")
merge_result %>% ggplot(aes(x=long, y=lat, group=group, fill=monthly_lc)) +
geom_polygon(color="white") + labs(title="지역별 총 대출약정금액") +
scale_fill_gradient(high="red", low="lavenderblush") +
theme_bw() +
theme(legend.title = element_blank(), aspect.ratio = 1,
plot.title = element_text(hjust = 0.5, size=15))
```
+ 서울, 경기에서 총 대출약정금액의 지역별 평균값이 큰 편이고, 전남이 가장 작다.
```{r monthly_lc3, fig.width=13, fig.height=12}
data1_L %>% ggplot(aes(x=ages, y=monthly_lc, fill=ages)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20)) +
scale_fill_tableau() +
facet_wrap(~city, ncol=4, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 총 대출약정금액")
```
+ 서울, 경기, 대구는 연령대가 증가할수록 총 대출약정금액도 커지는 패턴을 보이고, 다른 지역은 대체로 50대까지 증가하다 감소하는 패턴을 보인다.
+ 제주의 총 대출약정금액의 월별 편차는 다른 지역에 비해 큰 편이다.
```{r monthly_lc4, fig.width=10, fig.height=9}
data1_L %>% ggplot(aes(x=city, y=monthly_lc, fill=city)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20),
axis.text.x = element_text(angle=90, vjust=0.3, size=12)) +
facet_wrap(~ages, ncol=3, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 총 대출약정금액")
```
+ 전반적으로 서울의 대출약정금액이 다른 지역에 비해 큰 편이고, 80대와 90대에서 그 격차가 더 크게 나타났다.
+ 제주의 경우 40대 ~ 70대가 다른 연령대에서보다 총 대출약정금액이 크게 나타났다.
+ 제주와 울산의 90대는 같은 지역의 다른 연령대에 비해 총 대출약정금액이 작은 편이다.
```{r monthly_lc5, fig.width=6, fig.height=4}
data1_Y %>% ggplot(aes(x=ages, y=monthly_lc, fill=sex)) +
geom_boxplot(alpha=0.3) + theme_bw() +
scale_fill_fivethirtyeight() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=15)) +
ggtitle("성별 연령대별 총 대출약정금액")
```
+ 전반적으로 남자의 총 대출약정금액이 여자의 총 대출약정금액 보다 크다.
> End of Tab
---
### 총 대출금액(monthly_loan)
총 대출금액: KCB에 등록된 대출개설정보 중 개인대출정보의 대출금액의 합
```{r monthly_loan1, fig.width=5, fig.height=4}
temp <- data1_L %>% group_by(id) %>% summarise(monthly_loan=mean(monthly_loan))
merge_result <- inner_join(korea_map, temp, by = "id")
merge_result %>% ggplot(aes(x=long, y=lat, group=group, fill=monthly_loan)) +
geom_polygon(color="white") + labs(title="지역별 총 대출금액") +
scale_fill_gradient(high="red", low="lavenderblush") +
theme_bw() +
theme(legend.title = element_blank(), aspect.ratio = 1,
plot.title = element_text(hjust = 0.5, size=15))
```
+ 총 대출약정금액과 마찬가지로 지역별 총 대출금액의 지역별 평균도 서울, 경기가 가장 크고, 전남이 가장 작다.
```{r monthly_loan3, fig.width=13, fig.height=12}
data1_L %>% ggplot(aes(x=ages, y=monthly_loan, fill=ages)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20)) +
scale_fill_tableau() +
facet_wrap(~city, ncol=4, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 총 대출금액")
```
+ 서울, 경기는 연령대가 증가할수록 총 대출금액도 커지는 패턴을 보이고, 다른 지역은 대체로 50대까지 증가하다 감소하는 패턴을 보인다.
+ 제주의 총 대출금액의 월별 편차는 다른 지역에 비해 큰 편이다.
```{r monthly_loan4, fig.width=10, fig.height=9}
data1_L %>% ggplot(aes(x=city, y=monthly_loan, fill=city)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20),
axis.text.x = element_text(angle=90, vjust=0.3, size=12)) +
facet_wrap(~ages, ncol=3, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 총 대출금액")
```
+ 전반적으로 서울, 경기, 제주의 총 대출금액이 크게 나타났다.
+ 제주의 경우 40대 ~ 70대가 다른 연령대에서보다 총 대출금액이 크게 나타났다.
```{r monthly_loan5, fig.width=6, fig.height=4}
data1_Y %>% ggplot(aes(x=ages, y=monthly_loan, fill=sex)) +
geom_boxplot(alpha=0.3) + theme_bw() +
scale_fill_fivethirtyeight() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=15)) +
ggtitle("성별 연령대별 총 대출금액")
```
+ 전반적으로 남자의 총 대출금액이 여자의 총 대출금액보다 크다.
> End of Tab
---
### 은행업종 총 대출금액(monthly_bk_loan)
은행업종 총 대출금액: 은행업종으로부터 KCB에 등록된 대출개설정보 중 개인대출정보의 대출금액의 합
```{r monthly_bk_loan1 ,fig.width=5, fig.height=4}
temp <- data1_L %>% group_by(id) %>% summarise(monthly_bk_loan=mean(monthly_bk_loan))
merge_result <- inner_join(korea_map, temp, by = "id")
merge_result %>% ggplot(aes(x=long, y=lat, group=group, fill=monthly_bk_loan)) +
geom_polygon(color="white") + labs(title="지역별 은행업종 총 대출금액") +
scale_fill_gradient(high="red", low="lavenderblush") +
theme_bw() +
theme(legend.title = element_blank(), aspect.ratio = 1,
plot.title = element_text(hjust = 0.5, size=15))
```
+ 은행업종 총 대출금액의 지역별 평균은 전반적으로 서울, 경기가 높게 나타났다.
```{r monthly_bk_loan3, fig.width=13, fig.height=12}
data1_L %>% ggplot(aes(x=ages, y=monthly_bk_loan, fill=ages)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20)) +
scale_fill_tableau() +
facet_wrap(~city, ncol=4, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 은행업종 총 대출금액")
```
+ 서울, 경기는 연령대가 증가할수록 은행업종 총 대출금액도 커지는 패턴을 보이고, 다른 지역은 대체로 50대까지 증가하다 감소하는 패턴을 보인다.
+ 제주의 은행업종 총 대출금액의 월별 편차는 다른 지역에 비해 큰 편이다.
```{r monthly_bk_loan4, fig.width=10, fig.height=9}
data1_L %>% ggplot(aes(x=city, y=monthly_bk_loan, fill=city)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20),
axis.text.x = element_text(angle=90, vjust=0.3, size=12)) +
facet_wrap(~ages, ncol=3, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 은행업종 총 대출금액")
```
+ 전반적으로 서울과 경기의 은행업종 총 대출금액이 다른 지역에 비해 큰 편이다.
+ 제주의 경우 40대 ~ 70대에서 은행업종 총 대출금액이 높게 나타났다.
```{r monthly_bk_loan5, fig.width=6, fig.height=4}
data1_Y %>% ggplot(aes(x=ages, y=monthly_bk_loan, fill=sex)) +
geom_boxplot(alpha=0.3) + theme_bw() +
scale_fill_fivethirtyeight() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=15)) +
ggtitle("성별 연령대별 은행업종 총 대출금액")
```
+ 대체로 남자가 여자에 비해 은행업종 총 대출금액이 크다.
---
다음으로 은행업종 총 대출금액 비율을 계산하여 살펴보았다.
```{r monthly_bk_loan6, fig.width=5, fig.height=4}
data1_L <- data1_L %>% mutate(monthly_bk_loan_rate = monthly_bk_loan/total_loan1)
temp <- data1_L %>% group_by(id) %>% summarise(monthly_bk_loan_rate=mean(monthly_bk_loan_rate))
merge_result <- inner_join(korea_map, temp, by = "id")
merge_result %>% ggplot(aes(x=long, y=lat, group=group, fill=monthly_bk_loan_rate)) +
geom_polygon(color="white") + labs(title="지역별 은행업종 총 대출금액 비율") +
scale_fill_gradient(high="red", low="lavenderblush") +
theme_bw() +
theme(legend.title = element_blank(), aspect.ratio = 1,
plot.title = element_text(hjust = 0.5, size=15))
```
+ 서울의 은행업종 총 대출 금액 비율 평균이 다른 지역에 비해 상당히 높은 편이다.
```{r monthly_bk_loan7, fig.width=13, fig.height=12}
data1_L %>% ggplot(aes(x=ages, y=monthly_bk_loan/total_loan1, fill=ages)) +
geom_boxplot(alpha=0.7) + theme_bw() +
theme(legend.title = element_blank(), legend.spacing.x = unit(0.3, 'cm'),
plot.title = element_text(hjust = 0.5, size=20)) +
scale_fill_tableau() +
facet_wrap(~city, ncol=4, labeller=label_both, scales='free_x') +
ggtitle("지역별 연령대별 총 대출금액 비율")
```
+ 연령대가 증가할수록 은행업종 대출금액 커지는 패턴을 보이며, 서울의 경우 전 연령대에서 은행업종 대출금액 비율이 1에 가까운 것으로 나타났다.
```{r monthly_bk_loan8, fig.width=10, fig.height=9}
data1_L %>% ggplot(aes(x=city, y=monthly_bk_loan/total_loan1, fill=city)) +