GDP-2019

Sujay Kamal Madisetty(S3794983)

Index

Introduction

GDP(Gross Domestic Product) is the monetary value of all finished goods and services made within a country during a specific period.

GDP provides an economic snapshot of a country, used to estimate the size of an economy and growth rate.

In our case,we are looking into GDP of 2019 of various countries.

Process

GDP of Low Income Countries

ggplot(Countries_LI, aes(x=reorder(Countries_LI$`Country Name`, Countries_LI$`2019`),y=Countries_LI$`2019`, fill=GDP_GROWTH_LI)) +
  geom_col(position = "identity") +
  labs(title= "GDP of Low Income Countries in 2019") +
  xlab("Country") +
  ylab("GDP(in %)-2019 ") +
  coord_flip()

GDP of High Income Countries

ggplot(Countries_HI, aes(x=reorder(Countries_HI$`Country Name`, Countries_HI$`2019`),y=Countries_HI$`2019`, fill=GDP_GROWTH_HI)) +
  geom_col(position = "identity") +
  labs(title= "GDP of High Income Countries in 2019") +
  xlab("Country") +
  ylab("GDP(in %)-2019 ") +
  coord_flip()

GDP of Upper Middle Income Countries

ggplot(Countries_UMI, aes(x=reorder(Countries_UMI$`Country Name`, Countries_UMI$`2019`),y=Countries_UMI$`2019`, fill=GDP_GROWTH_UMI)) +
  geom_col(position = "identity") +
  labs(title= "GDP of Upper Middle Income Countries in 2019") +
  xlab("Country") +
  ylab("GDP(in %)-2019 ") +
  coord_flip()

GDP of Lower Middle Income Countries

ggplot(Countries_LMI, aes(x=reorder(Countries_LMI$`Country Name`, Countries_LMI$`2019`),y=Countries_LMI$`2019`, fill=GDP_GROWTH_LMI)) +
  geom_col(position = "identity") +
  labs(title= "GDP of Low Middle Income Countries in 2019") +
  xlab("Country") +
  ylab("GDP(in %)-2019 ") +
  coord_flip()

Conclusion

Source