Research_Interests <- function(fields_in_macroeconomics){
# Copyright (c) 2019 Camilo Marchesini (License GPL v3)
Research_Interests <- (
"Macroeconomics",
"International Finance",
"Numerical Methods"
)
macroproblems <- fields_in_macroeconomics %>%
select(one_of(Research_Interests))
k <-nrow(macroproblems)
solve_macroproblems <- matrix(NA,k,1)
for (iter in 1:k){
solve_macroproblems[iter] <- apply(macroproblems,1,lots_of_dedication)
}
return(solve_macroproblems)
}
Disclaimer: The views expressed in this website should not be taken to necessarily reflect the position of my employers.
Any errors or omissions are my own.