Be Asm 2
Be Asm 2
a.
The dependent variable is GDP, PPP (2017 constant international $). The independent
variables are as follows:
FDI brings capital, technology, and managerial expertise to the host country, which can
enhance productivity and economic growth, it fosters capital accumulation and technological
advancement (Borensztein et al. 1998).
Trade Trade openness allows countries to specialize in industries where they have a
comparative advantage, leading to more efficient resource allocation and economic growth.
Trade also provides access to larger markets and advanced technologies. (Frankel and Romer
1999).
Population (Pop) Population size affects the labor force and market size. A larger population
can contribute to economic growth by providing a bigger workforce and higher consumer
demand.
Industry Value Added (Industry): The industrial sector, including construction, is a key driver
of economic growth, especially in developing economies. Industrialization leads to increased
production capabilities, job creation, and technological advancement (Szirmai 2012).
Multicollinearity
VIF value:
As all of the values is less than 10, this indicate that there is no serious multicollinearity
problems in the model (Wooldridge 2019)
Scatter Plot
Regression Output
Model 1 equation:
b. Interpretation on coefficient
billion_FDI: Coefficient is -9.455, indicating for one billion increase in billion_FDI (Foreign
Direct Investment), billion_GDPppp is estimated to decrease by 9.455 billion, ceteris paribus
c. Statistical significance
The significance level to determine whether a variable is statistically significant in this case is
set at 5%
d. Breusch-Pagan test
The Breusch-Pagan test, is a statistical test used in econometrics to assess the presence of
heteroscedasticity in a regression model (Bobbit 2020).
Result:
BP = 18.096, df = 5, p-value = 0.002828
As the p-value is 0.002828 <0.05, thus there is enough evidence to reject the H0, hence the
model has no heteroskedasticity problem.
f.
Reverse causality: occurs when the assumed cause and effect in a relationship may actually
be reversed. In the context of GDP per capita (GDPpc) and Trade (% of GDP), reverse
causality suggests that not only does trade affect GDPpc, but GDPpc may also influence
trade. For example, a higher GDPpc may lead to increased trade activities as countries with
higher income levels tend to engage more in international trade. However, higher trade levels
can also contribute to economic growth by boosting exports and imports, thus increasing
GDPpc.
To address reverse causality, instrumental variable (IV) regression can be used. IV regression
utilizes an instrument, a variable that is correlated with the endogenous explanatory variable
(Trade (% of GDP)) but not directly related to the dependent variable (GDPpc), to estimate
causal effects.
g.
From model 1 result, FDI, population, and industrial output emerge as statistically significant
determinants of GDP. There are several policy suggestion to increase GDP
Strategic Management of Foreign Direct Investment (FDI) The negative coefficient for FDI in
our model highlights the complexity of its impact on GDP, suggesting that not all FDI is
equally beneficial. To maximize the positive effects of FDI, policymakers should adopt a
strategic approach that targets high-quality investments. This includes attracting FDI that
promotes technology transfer, creates skilled jobs, chain (Javorcik 2004). Establishing clear
guidelines and incentives for FDI can ensure alignment with national development goals. For
instance, offering tax breaks or subsidies for foreign companies that invest in high-tech
industries or R&D can drive economic growth (OECD 2015). Additionally, improving the
business environment by enhancing legal frameworks and ensuring political stability can
make a country more attractive to investors.
h. R code
install.packages("car")
install.packages("ggplot2")
install.packages("lmtest")
install.packages("VIM")
install.packages("stargazer")
install.packages("sandwich")
library(VIM)
library(lmtest)
library(car)
library(ggplot2)
library(stargazer)
#Data re-create
#Data rescaling
Data_final$billion_GDPppp <-Data$GDPppp/1000000000
Data_final$billion_FDI <-Data$FDI/1000000000
Data_final$billion_Industry <-Data$Industry/1000000000
########Part a)
#Scatter Plot
# Linear regression for FDI
FDI_reg <- lm(billion_GDPppp ~ billion_FDI, data = Data_final)
summary(FDI_reg)
plot(Data_final$billion_FDI, Data_final$billion_GDPppp, main = "FDI vs GDPppp", xlab =
"GDPppp", ylab = "FDI")
abline(FDI_reg, col = "red")
##Check Multi-collinearity
correlation_matrix <- cor(Data_final[, c("GDPppp", "FDI",
"ExpenEdu","Trade","Pop","Industry")])
rounded_correlation_matrix <- round(correlation_matrix, 3)
print(rounded_correlation_matrix)
#VIF
vif_values <- car::vif(model1)
print(vif_values)
########Part d)
# Perform the Breusch-Pagan test for homoscedasticity
bptest(model1)
########Part e)
########Part f)
Data$GDPpc <- Data$`GDP, PPP (constant 2017 international $)`/Data$`Population, total`
Data$log_GDPpc <- log(Data$GDPpc)