Publications by ayumuR
FDIdata_for_Brexit
1 Preparation # Remove all data rm(list = ls()) # Load the necessary libraries library("rio") # For importing data library("tidyverse") # For data manipulation library("countrycode") # For creating the country ISO codes library("Hmisc") # For labeling the variables 2 Sector Codes # Import the sector codes correspondence t...
1013 sym R (13001 sym/18 pcs) 2 img 1 tbl
Doing_Business
1 The World Bank’s Doing Business Report The World Bank’s Doing Business Report has published the ease of doing business rankings between 2004 and 2020. The Doing Business measured business regulations for local firms in 190 economies. However, the World Bank has decided to discontinue the Doing Business report, after data irregularities on Do...
850 sym R (4969 sym/8 pcs) 1 img 2 tbl
WDI
1 The WDI package The World Development Indicators (WDI) package is a R package to download and use the World Bank’s World Development Indicators database. WDI package # Install WDI package install.packages("WDI") 2 Load WDI package and search the data # Load WDI package library(WDI) # Search GDP, PPP WDIsearch("GDP, PPP") ## ...
575 sym R (1590 sym/6 pcs)
WGI
1 The Worldwide Governance Indicators, 2023 Update The Worldwide Governance Indicators (WGI) are designed to assess broad patterns in perceptions of governance across countries and over time. The WGI aggregate data from more than 30 think tanks, international organizations, nongovernmental organizations, and private firms across the world. The WGI...
1143 sym R (696 sym/6 pcs) 1 img 2 tbl
PSM
Rにおけるマッチング https://lost-stats.github.io/Model_Estimation/Matching/propensity_score_matching.html rm(list=ls()) library(pacman) p_load(tidyverse, causalweight) smoking = read_csv("https://github.com/LOST-STATS/lost-stats.github.io/raw/source/Model_Estimation/Matching/Data/smoking.csv") smoking = smoking %>% mutate(smoke = 1*(sm...
680 sym R (8722 sym/12 pcs) 1 img 3 tbl
FDI_data_merge
1 データの読み込み library(readr) country_cp <- read_csv("Data_output/country_cp.csv") ## Rows: 13616 Columns: 11 ## ── Column specification ──────────────────────────────────────────────────────── ## Delimiter: "," ## chr (2)...
197 sym R (2568 sym/12 pcs) 2 img
mof_export
1 はじめに この文章では、財務省貿易統計を用いてデータを分析する際に行われる典型的なデータ処理を紹介する。 このページで用いるデータもしくは生成される主なデータは以下の3つである。 輸出データ: ik-100h2023e017.csv 統計国名符号表.xlsx 統計国名符号�...
1476 sym R (2752 sym/13 pcs) 7 img
female_director
1 データ 内閣府男女共同参画局女性役員情報サイトから取得したcsvファイルのデータを整理する。 2 csv形式のデータの読み込み # 全てのファイルを削除する rm(list = ls()) # 2023年の役員データを読み込む # yakuin_data_2023 <- read.csv("Data_raw/yakuin_data_2023.csv" , header = T, ...
180 sym 1 img
Needs
1 事前準備 NEEDS-FinancialQUEST(FQ) から「ROE」のデータをダウンロードする。 エラーとなるので、Excelファイルからあらかじめ「検索条件シート」を削除しておく必要がある。 2 データの読み込み # 全てのデータを削除 rm(list = ls()) # Data_rawフォルダにあるROE2015.x...
191 sym R (3287 sym/7 pcs)
IMF_FDIdata
1 はじめに 国際通貨基金(IMF)の外国直接投資(FDI)のデータを整理する。この文書では、データの読み込み、整形、および分析を行う。 IMF, Coordinated Direct Investment Survey (CDIS) 一括ダウンロードには登録が必要。 https://FDIdata.imf.org/?sk=388dfa60-1d26-4ade-b505-a05a558d9a42 2 ...
376 sym R (2199 sym/4 pcs)