以下の指標の中から、二つ以上(複数)を選択して、データの概要(description)を記録し、データを WDI で取得し、以下の分析をする。
それぞれについて考察(気づいたこと、疑問など)を記す
これは、課題1と課題2の合わせたものです。課題1も課題2も終わった人は、挑戦してください。
2023.2.17.23:59 までに Moodle の課題2追加提出ボックスに提出してくださればフィードバックを書きます。。
Refugee population by country or territory of asylum:SM.POP.REFG [Link]
Refugee population by country or territory of origin:SM.POP.REFG.OR [Link]
Net ODA received (% of GNI):DT.ODA.ODAT.GN.ZS [Link]
Net official development assistance and official aid received (current US$):DT.ODA.ALLD.CD [Link]
Net ODA received (% of central government expense):DT.ODA.ODAT.XP.ZS [Link]
Military expenditure (current USD):MS.MIL.XPND.CD [Link]
Military expenditure (% of general government expenditure):MS.MIL.XPND.ZS [Link]
Arms imports (SIPRI trend indicator values):MS.MIL.MPRT.KD [Link]
Arms exports (SIPRI trend indicator values):MS.MIL.XPRT.KD [Link]
難民受け入れ人口:Refugee population by country or territory of asylum:SM.POP.REFG [Link]
難民となる人口:Refugee population by country or territory of origin:SM.POP.REFG.OR [Link]
難民の庇護国とは、庇護請求が提出され、認められた国のことである。出身国とは、一般的に請求者の国籍または市民権のある国を指す。
Description: Refugees are people who are recognized as refugees under the 1951 Convention Relating to the Status of Refugees or its 1967 Protocol, the 1969 Organization of African Unity Convention Governing the Specific Aspects of Refugee Problems in Africa, people recognized as refugees in accordance with the UNHCR statute, people granted refugee-like humanitarian status, and people provided temporary protection. Asylum seekers–people who have applied for asylum or refugee status and who have not yet received a decision or who are registered as asylum seekers–are excluded. Palestinian refugees are people (and their descendants) whose residence was Palestine between June 1946 and May 1948 and who lost their homes and means of livelihood as a result of the 1948 Arab-Israeli conflict. Country of asylum is the country where an asylum claim was filed and granted. Country of origin generally refers to the nationality or country of citizenship of a claimant.
概要: 難民とは、「難民の地位に関する1951年条約」またはその「1967年議定書」、「アフリカにおける難民問題の特定の側面を管理する1969年アフリカ統一機構条約」に基づき難民と認められた人、UNHCRの法令に基づき難民と認められた人、難民に準ずる人道的地位を与えられた人、一時的な保護を与えられた人を指す。庇護申請者–庇護または難民認定を申請し、まだ決定を受けていない人、または庇護申請者として登録されている人–は除外される。パレスチナ難民とは、1946年6月から1948年5月までの間に居住地がパレスチナであり、1948年のアラブ・イスラエル紛争の結果、住居と生計手段を失った人々(およびその子孫)である。庇護国とは、庇護請求が提出され、認められた国のことである。出身国とは、一般的に請求者の国籍または市民権のある国を指す。
これまでとも同じように二つのパッケージを読み込み(load)ます。
library(tidyverse)
library(WDI)
変数名を指定します。ここでは、refugee_asylum
と、refugee_origin
としました。なるべくわかりやすい名前にします。
この変数名は、今後使いますから、重要です。一応、例として、わたしが使った、変数名を書いてあります。他の変数名を使っても構いません。extra = TRUE
とすると、地域名(region)や、収入レベル(income)などが追加されます。
df_refugee <- WDI(indicator = c(refugee_asylum = "SM.POP.REFG",
refugee_origin = "SM.POP.REFG.OR"),
extra = TRUE)
data ディレクトリに書き込んでおきます。
write_csv(df_refugee, "data/refugee.csv")
data ディレクトリから読み出します。Run All や、Run All Chunks Above をする時は、上の二つをスキップする設定にしてあります。
df_refugee <- read_csv("data/refugee.csv")
Rows: 16758 Columns: 14── Column specification ─────────────────────────────────────────────────────────────────
Delimiter: ","
chr (7): country, iso2c, iso3c, region, capital, income, lending
dbl (5): year, refugee_asylum, refugee_origin, longitude, latitude
lgl (1): status
date (1): lastupdated
ℹ Use `spec()` to retrieve the full column specification for this data.
ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
データ名で、中身を表示できます。head(df_refugee)
とすると、6行表示されます。
df_refugee
変数の情報を得ることができます。
str(df_refugee)
spc_tbl_ [16,758 × 14] (S3: spec_tbl_df/tbl_df/tbl/data.frame)
$ country : chr [1:16758] "Afghanistan" "Afghanistan" "Afghanistan" "Afghanistan" ...
$ iso2c : chr [1:16758] "AF" "AF" "AF" "AF" ...
$ iso3c : chr [1:16758] "AFG" "AFG" "AFG" "AFG" ...
$ year : num [1:16758] 2014 1971 2006 2013 1995 ...
$ status : logi [1:16758] NA NA NA NA NA NA ...
$ lastupdated : Date[1:16758], format: "2023-12-19" "2023-12-19" ...
$ refugee_asylum: num [1:16758] 300421 NA 34 16861 19605 ...
$ refugee_origin: num [1:16758] 2596259 NA 2107510 2556483 2679132 ...
$ region : chr [1:16758] "South Asia" "South Asia" "South Asia" "South Asia" ...
$ capital : chr [1:16758] "Kabul" "Kabul" "Kabul" "Kabul" ...
$ longitude : num [1:16758] 69.2 69.2 69.2 69.2 69.2 ...
$ latitude : num [1:16758] 34.5 34.5 34.5 34.5 34.5 ...
$ income : chr [1:16758] "Low income" "Low income" "Low income" "Low income" ...
$ lending : chr [1:16758] "IDA" "IDA" "IDA" "IDA" ...
- attr(*, "spec")=
.. cols(
.. country = col_character(),
.. iso2c = col_character(),
.. iso3c = col_character(),
.. year = col_double(),
.. status = col_logical(),
.. lastupdated = col_date(format = ""),
.. refugee_asylum = col_double(),
.. refugee_origin = col_double(),
.. region = col_character(),
.. capital = col_character(),
.. longitude = col_double(),
.. latitude = col_double(),
.. income = col_character(),
.. lending = col_character()
.. )
- attr(*, "problems")=<externalptr>
df_ref <- df_refugee |>
select(country, iso2c, year, refugee_asylum, refugee_origin, region, income)
df_unemp
データには country
のところに、国だけでなく、地域も入っているので、地域のリストを、iso2c
で REGION
に入れておきます。
REGION <- c("1A", "1W", "4E", "6F", "6N", "6X", "7E", "8S", "A4", "A5",
"A9", "B1", "B2", "B3", "B4", "B6", "B7", "B8", "C4", "C5", "C6",
"C7", "C8", "C9", "D2", "D3", "D4", "D5", "D6", "D7", "EU", "F1",
"F6", "M1", "M2", "N6", "OE", "R6", "S1", "S2", "S3", "S4", "T2",
"T3", "T4", "T5", "T6", "T7", "V1", "V2", "V3", "V4", "XC", "XD",
"XE", "XF", "XG", "XH", "XI", "XJ", "XL", "XM", "XN", "XO", "XP",
"XQ", "XT", "XU", "XY", "Z4", "Z7", "ZB", "ZF", "ZG", "ZH", "ZI",
"ZJ", "ZQ", "ZT")
地域名にはどのようなものがあるか見ておきます。
df_ref |> filter(iso2c %in% REGION) |> distinct(country, iso2c)
国名も、地域(region)と、所得レベル(income)と共に、表示しておきます。
df_ref |> filter(!(iso2c %in% REGION)) |> distinct(country, iso2c, region, income)
自分で分析したい国のリストを作ってください。ここでは、紛争に関係がありそうな国を CONFLICTS にします。
CONFLICTS <- c("Syrian Arab Republic", "Ukraine", "Afghanistan", "South Sudan", "Myanmar", "Congo, Dem. Rep.", "Turkiye", "West Bank and Gaza")
まずは、NA
の値を削除します。そのあとで、国の情報の数を数えたいので、!(iso2c %in% REGION)
で、上でおいた、地域の iso2c を選択し、!
は否定でしたから、地域ではないものを選択し、その数を棒グラフにしています。
df_ref |> drop_na(refugee_asylum, refugee_origin) |> filter(!(iso2c %in% REGION)) |>
ggplot(aes(year)) + geom_bar()
気づいたこと・疑問
df_ref |> filter(country == "Japan") |> drop_na(refugee_asylum) |>
ggplot(aes(year, refugee_asylum)) + geom_line() +
labs(title = "日本の受け入れ難民数")
df_ref |> filter(country == "Japan") |> drop_na(refugee_origin) |>
ggplot(aes(year, refugee_origin)) + geom_line() +
labs(title = "日本からの難民数")
気づいたこと・疑問
CONFLICTS は、country
ですから、下のようにします。
df_ref |> filter(country %in% CONFLICTS) |> drop_na(refugee_asylum) |>
ggplot(aes(year, refugee_asylum, col = country)) + geom_line() +
labs(title = "紛争国の難民受け入れ数")
気づいたこと・疑問
df_ref |> filter(country %in% CONFLICTS) |> drop_na(refugee_origin) |>
ggplot(aes(year, refugee_origin, col = country)) + geom_line() +
labs(title = "紛争国の難民数")
cols = c(refugee_asylum, refugee_origin)
と、一つの指標にまとめるものをリストすると、name
に指標名が入り、value
に、その値が入る。書式は、pivot_longer(cols = ..., names_to = ..., values_to = ...)
で、初期設定では、names_to = "name", values_to = "value"
となっているので、指定しないと、下のようになる。Help 参照。
df_ref_long <- df_ref |> pivot_longer(cols = c(refugee_asylum, refugee_origin))
df_ref_long
col = name
と指定すると、色で区別して、一つのグラフに描ける
df_ref |> filter(country %in% CONFLICTS) |> drop_na(refugee_origin) |>
ggplot(aes(year, refugee_origin, col = country)) + geom_line() + scale_y_log10()
labs(title = "紛争国の難民数(log10 スケール)")
$title
[1] "紛争国の難民数(log10 スケール)"
attr(,"class")
[1] "labels"
気づいたこと・疑問
df_ref_long |> filter(country == "World") |> drop_na(value) |>
ggplot(aes(year, value, col = name)) + geom_line() +
labs(title = "世界の難民")
気づいたこと・疑問
df_ref_long |> filter(iso2c %in% ASEAN) |> drop_na(value) |>
ggplot(aes(year, value, col = country, linetype = name)) + geom_line() +
labs(title = "紛争国の難民")
気づいたこと・疑問
それぞれのデータが十分ある最近の年の値のヒストグラム(度数分布)
分け方の数 bins や、幅 binwidth を適切に変更
df_ref_long |> filter(iso2c %in% CONFLICTS) |> drop_na(value) |>
ggplot(aes(year, value, col = country, linetype = name)) + geom_line() +
labs(title = "紛争国の難民")
df_ref_long |> filter(iso2c %in% CONFLICTS) |> drop_na(value) |>
ggplot(aes(year, value, col = country, linetype = name)) + geom_line() + scale_y_log10() +
labs(title = "紛争国の難民(log10 スケール)")
気づいたこと・疑問点
データが十分ある最近の年の値の10カ国の値の棒グラフ
df_ref |> filter(!(iso2c %in% REGION)) |> filter(year == 2022) |> drop_na(refugee_origin) |>
ggplot(aes(refugee_asylum, fill = income)) + geom_histogram(bins = 10, col = "black", linewidth = 0.2) + scale_x_log10()
df_ref |> filter(!(iso2c %in% REGION)) |> filter(year == 2022) |> drop_na(refugee_asylum) |>
arrange(desc(refugee_asylum)) |> slice_head(n = 10) |>
ggplot(aes(fct_rev(fct_inorder(country)), refugee_asylum, fill = region)) + geom_col() + coord_flip() + labs(title = "難民受け入れの多い順", x = "")
LOG10 スケールを使っています。
気づいたこと・疑問
df_ref |> filter(!(iso2c %in% REGION)) |> filter(year == 2022) |> drop_na(refugee_origin) |>
arrange(refugee_origin) |> slice_head(n = 10) |>
ggplot(aes(fct_rev(fct_inorder(country)), refugee_origin, fill = region)) + geom_col() + coord_flip() + labs(title = "難民の少ない順", x = "")
気づいたこと・疑問
気づいたこと・疑問
df_ref |> filter(!(iso2c %in% REGION)) |> drop_na(refugee_asylum, refugee_origin) |>
ggplot(aes(refugee_asylum, refugee_origin)) + geom_point() +
geom_smooth(formula = 'y~x', method = "lm", se = FALSE) + scale_x_log10() + scale_y_log10() +
labs(title = "難民・受け入れ(回帰直線付)(log10 スケール)")
気づいたこと・疑問
相関係数が、0.025 で、ほとんど相関はないと言って良い。
気づいたこと・疑問
気づいたこと・疑問
気づいたこと・疑問
気づいたこと・疑問
気づいたこと・疑問
それぞれの国のデータは、データのある年の中での、値である。
アフガニスタンは、継続して、難民が多いことがわかる。
df_ref_long |> filter(!(iso2c %in% REGION)) |> filter(year %in% c(1991, 2001, 2011, 2021)) |>
drop_na(value) |>
ggplot(aes(factor(year), value, fill = name)) + geom_boxplot() + scale_y_log10() +
labs(title = "難民・10年ごとの箱ひげ図")
df_ref_long |> filter(country %in% CONFLICTS) |> drop_na(value) |>
ggplot(aes(country, value, fill = name)) + geom_boxplot() + coord_flip() + scale_y_log10() +
labs(title = "紛争国の難民箱ひげ図")
regions <- c("South Asia", "Europe & Central Asia",
"Middle East & North Africa", "East Asia & Pacific", "Sub-Saharan Africa",
"Latin America & Caribbean", "North America")