Цикл по многим переменным результата - пакет Synth () в R - PullRequest
0 голосов
/ 10 мая 2018

Я использую пакет Synth () (см. ftp: //cran.r-project.org/pub/R/web/packages/Synth/Synth.pdf) в R.

Это подмножество моего фрейма данных:

all_data_uk <- structure(list(countryno = c(1, 1, 1, 2, 2, 2, 3, 3, 3, 16, 16, 
16), country = c("Australia", "Australia", "Australia", "Canada", 
"Canada", "Canada", "Denmark", "Denmark", "Denmark", "United Kingdom", 
"United Kingdom", "United Kingdom"), year = c(1971, 1972, 1973, 
1971, 1972, 1973, 1971, 1972, 1973, 1971, 1972, 1973), top10_income_share = c(0.2657, 
0.2627, 0.2546, 0.37833, 0.37807, 0.37271, 0.323069660453, 0.322700285165, 
0.320162826601, 0.2929, 0.289, 0.2831), top5_income_share = c(0.1655, 
0.1654, 0.1593, 0.24075, 0.24106, 0.23917, 0.211599113574, 0.21160700537, 
0.209096813051, 0.1881, 0.1848, 0.1818), top1_income_share = c(0.0557, 
0.0573, 0.054, 0.08866, 0.08916, 0.08982, 0.082392548404, 0.0824267594074, 
0.07776546085945, 0.0702, 0.0694, 0.0699), gdp_growth =     structure(c(4.00330835508684, 
3.91178191457604, 2.59931282534502, 4.11765761702448, 5.44585557970514, 
6.96420291945871, 3.00503299618597, 3.92934382503836, 4.09292523611968, 
3.48436803631409, 4.30194591910262, 6.50872079327365), label = "(annual %)", class = c("labelled", 
"numeric")), capital_quinn = structure(c(50, 37.5, 37.5, 87.5, 87.5, 75, 75, 75, 75, 50, 50, 50), label = "(financial openness - capital     account)", class = c("labelled", 
"numeric"))), class = "data.frame", .Names = c("countryno", "country", 
   "year", "top10_income_share", "top5_income_share", "top1_income_share", 
"gdp_growth", "capital_quinn"), row.names = c(NA, -12L))

В моем воспроизводимом примере у меня есть три разные переменные результата: "top10_income_share", "top5_income_share", "top1_income_share" (в моей реальной проблеме у меня гораздо больше), с которыми я хочу провести анализ. «gdp_growth» и «capital_quinn» - мои контрольные переменные.

Для одной переменной результата, здесь "top10_income_share", у меня есть следующий код (который отлично работает):

# Define treated and control units
control_units_top10 <- c(1,2)
treated_unit <- 16

# Run dataprep() which returns a list of matrices
dataprep.out_top10 <- dataprep(
  foo = all_data_uk,
  predictors = c("gdp_growth", "capital_quinn"),
  predictors.op = "mean", 
  time.predictors.prior = 1971:1972,
  special.predictors = list(
    list("top10_income_share", 1971, "mean"),
    list("top10_income_share", 1972, "mean")),
  dependent = "top10_income_share",
  unit.variable = "countryno",
  unit.names.variable = "country",
  time.variable = "year",
  treatment.identifier = treated_unit,
  controls.identifier = control_units_top10,
  time.optimize.ssr = 1971:1972,
  time.plot = 1971:1973)

# Run synth() command
synth.out_top10 <- synth(data.prep.obj = dataprep.out_top10, optimxmethod = "BFGS")

# Annual discrepancies in the top 10 income share trend between unit 4 (United Kingdom) and its synthetic counterpart:
gaps_top10 <- dataprep.out_top10$Y1plot - (dataprep.out_top10$Y0plot %*% synth.out_top10$solution.w)

Я хотел бы зациклить эти команды и сделать один и тот же анализ для всех трех выходных переменных. Моя проблема в том, что каждый раз мне приходится настраивать treatment.identifier, special.predictors и dependent. Кроме того, я хотел бы сохранить выходные данные (dataprep.out_top10, dataprep.out_top5 ...; synth.out_top10, synth.out_top5 ... и т. Д.) Для всех трех выходных переменных.

Я нашел похожий вопрос ( Сохранить каждую R для итерации цикла в новом списке ), однако они имели одинаковые исходные и управляющие переменные в каждом цикле и хотели только перебрать блоки управления и I не удалось применить их решение к моей проблеме.

Вот что я придумал в следующем:

control_units_top10 <- c(1,2)
control_units_top5 <- c(1,2,3)
control_units_top1 <- c(1,3)
treated_unit <- 16

for(top in c("top10", "top5", "top1"))   
{
  paste0("dataprep.out_", top) <- dataprep(
    foo = all_data_uk,
    predictors = c("gdp_growth", "capital_quinn"),
    predictors.op = "mean", 
    time.predictors.prior = 1971:1972,
    special.predictors = list(
      list(paste0(top, "_income_share"), 1971, "mean"),
      list(paste0(top, "_income_share"), 1972, "mean")),
    dependent = paste0(top, "_income_share"),
    unit.variable = "countryno",
    unit.names.variable = "country",
    time.variable = "year",
    treatment.identifier = treated_unit,
    controls.identifier = get(paste0("control_units_", top)),
    time.optimize.ssr = 1971:1972,
    time.plot = 1971:1973)

  paste0("synth.out_", top) <- synth(data.prep.obj = dataprep.out, optimxmethod = "BFGS")

  paste0("gaps_", top) <- paste0("dataprep.out_", top)$Y1plot - (paste0("dataprep.out_", top)$Y0plot %*% paste0("synth.out_", top)$solution.w)
}

Я получаю сообщение об ошибке: Error in paste0("synth.out_", top) <- synth(data.prep.obj = dataprep.out, : target of assignment expands to non-language object, поэтому я полагаю, что мой подход paste0 () не работает, но я не смог найти никакого другого решения о том, как "проиндексировать" переменные результата и мои новые объекты.

Я новичок в R и stockoverflow и был бы очень рад любым советам по настройке цикла.

Заранее спасибо!

1 Ответ

0 голосов
/ 11 мая 2018

Я думаю, что у меня это есть.
Это немного долго, но это в основном потому, что я решил собрать его так, как вы это делали.Конечно, можно сгущать вещи и запускать их целиком в одном цикле.

library(Synth)

# Create a vector of variable names
cnames <- colnames(all_data_uk)
outcome_var <- cnames[grepl("income_share", cnames)]

# Creating a 'wrapper function' for dataprep().
# Purely out of convenience, so we don't have to think about all
# the arguments that will stay the same.
prepfun <- function(VAR, control_units, treated_unit) {
    dataprep(
    foo = all_data_uk,
    predictors = c("gdp_growth", "capital_quinn"),
    predictors.op = "mean", 
    time.predictors.prior = 1971:1972,
    special.predictors = list(
      list(VAR, 1971, "mean"),
      list(VAR, 1972, "mean")),
    dependent = VAR,
    unit.variable = "countryno",
    unit.names.variable = "country",
    time.variable = "year",
    treatment.identifier = treated_unit,
    controls.identifier = control_units,
    time.optimize.ssr = 1971:1972,
    time.plot = 1971:1973)
}

# Define treated and control units
treated_unit <- 16
control_units_top10 <- c(1,2)
control_units_top5 <- c(1,2,3)
control_units_top1 <- c(1,3)
control_list <- list(control_units_top10, control_units_top5, control_units_top1)

# Run dataprep() in a loop over both the variable names, and the list of
# control unit specifiers, returning a list of lists
dataprep_list <- mapply(prepfun, outcome_var, control_list, treated_unit,
  SIMPLIFY=FALSE)

# Run synth() command
# In a loop over the dataprep list of lists
synth.out_list <- lapply(dataprep_list, synth, optimxmethod = "BFGS")

# simple summaries
lapply(synth.out_list, "[[", "solution.w")
lapply(synth.out_list, "[[", "solution.v")


# Annual discrepancies in the top 10 income share trend between unit
# 16 (United Kingdom) and its synthetic counterpart:

# defining the discrepancy function
discr <- function(y1, y0, sw) {
    y1 - (y0 %*% sw)
}

# getting a list of data and weights for each variable 
y1_list <- lapply(dataprep_list, "[[", "Y1plot")
y0_list <- lapply(dataprep_list, "[[", "Y0plot")
sw_list <- lapply(synth.out_list, "[[", "solution.w")

# mapply takes a single function and several lists of arguments
discrepancies <- mapply(discr, y1_list, y0_list, sw_list, SIMPLIFY=FALSE)

Функции lapply() и mapply() уберут имена столбцов, так что если вы хотите, чтобы они были вк окончательному результату вы должны будете добавить их самостоятельно.

discrepancies <- do.call(cbind, discrepancies)
colnames(discrepancies) <- outcome_var
discrepancies

#      top10_income_share top5_income_share top1_income_share
# 1971       0.0007806441      0.0016615564      0.0009574887
# 1972      -0.0007620713     -0.0016525268     -0.0009905464
# 1973       0.0007952133      0.0002760334      0.0011823801

Если у вас есть какие-либо вопросы о функциях *apply(), просто спросите.Я помню, что мне было очень трудно обдумать их, когда я впервые начал использовать R.

Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...