Group Members:

1 Key takeaways

We analyzed effect of TCMB interest rates on economy and our results :

2 Overview and Preliminary

We get TCMB interest rate as a main data and USD/TRY, technology indicators exports, data it was a small data but very open the interpretation

3 Objectives:

4 Explore and Cleaning data

Our main dataset was small and clean but when we need comparisons other data we needed the make it compatible with main data. Firstly, we need necessary libraries:

5 Data Loading

Explore the interest_rate data frame with str() function.

## Classes 'tbl_df', 'tbl' and 'data.frame':    20 obs. of  2 variables:
##  $ year: POSIXct, format: "2010-05-20" "2010-12-17" ...
##  $ rate: num  7 6.5 6.25 5.75 5.5 5 4.5 10 9.5 8.75 ...
## Classes 'spec_tbl_df', 'tbl_df', 'tbl' and 'data.frame': 120 obs. of  6 variables:
##  $ Date    : chr  "Dec 19" "Nov 19" "Oct 19" "Sep 19" ...
##  $ Price   : num  5.78 5.75 5.71 5.65 5.83 ...
##  $ Open    : num  5.75 5.71 5.65 5.83 5.58 ...
##  $ High    : num  5.79 5.79 5.94 5.84 5.86 ...
##  $ Low     : num  5.73 5.67 5.64 5.63 5.44 ...
##  $ Change %: chr  "0.54%" "0.60%" "1.13%" "-3.12%" ...
##  - attr(*, "spec")=
##   .. cols(
##   ..   Date = col_character(),
##   ..   Price = col_double(),
##   ..   Open = col_double(),
##   ..   High = col_double(),
##   ..   Low = col_double(),
##   ..   `Change %` = col_character()
##   .. )
## Classes 'tbl_df', 'tbl' and 'data.frame':    151 obs. of  5 variables:
##  $ Date    : chr  "2007-05" "2007-06" "2007-07" "2007-08" ...
##  $ Turkey  : num  140 140 139 139 140 ...
##  $ Region_1: num  144 144 142 142 144 ...
##  $ Region_2: num  141 141 141 140 141 ...
##  $ Region_3: num  142 142 141 141 142 ...
## Classes 'tbl_df', 'tbl' and 'data.frame':    151 obs. of  5 variables:
##  $ Date        : chr  "2007-05" "2007-06" "2007-07" "2007-08" ...
##  $ Turkey      : num  139 139 139 140 142 ...
##  $ ppi_region_1: num  152 152 153 158 156 ...
##  $ ppi_region_2: num  154 155 155 162 162 ...
##  $ ppi_region_3: num  197 196 199 211 197 ...

6 Data Type Converting

Since the “year” column appears a categorical variable on consumer price index, producer price index and interest rate datasets, it should be converted it to date with as.Date functon to more convenient analysis. Also, some columns are renamed to easy understanding.

A new dataset was prepared for changes in the CPI and PPI overall Turkey. At the same time, the dataset was manipulated by normalizing the datatable with gather() function.

## 'data.frame':    302 obs. of  3 variables:
##  $ Date       : Date, format: "2007-05-01" "2007-06-01" ...
##  $ index_type : Factor w/ 2 levels "CPI","PPI": 1 1 1 1 1 1 1 1 1 1 ...
##  $ index_value: num  140 140 139 139 140 ...

7 Analysis

Let’s look at the graph of the interest rates change over the years.

As can be seen from the graph, interest rates determined by TCMB showed volatility and increased momentum.

8 USD/TRY relation

9 Inflation vs. Interest Rates

There are many discussions on the relationship between interest and inflation. Inflation refers to the rate at which prices for goods and services rise. To examine this relationship, let us examine the producer price index and consumer price index data. Although the graph values show an increasing change, it is also necessary to calculate the monthly and annual changes in interest rates in order to more convenient analysis.

We have changed the column names for easier visualizing.

The relationship between CPI and PPI is shown below.

Changes on PPI and CPI:

Our studies show that the inflation rate rises gradually over the years.

10 Technology Exports vs. Interest Rate

10.1 Dot Plot the techonology data and see what it has

## 
## Attaching package: 'scales'
## The following object is masked from 'package:readr':
## 
##     col_factor

In this plot show us, high techonology exports are above the other so we can take this indicator to do analysis with interest rate. However, we are gonna use two more indicators which are Charges for the use of intellectual property, payments (BoP, current US\() and Charges for the use of intellectual property, receipts (BoP, current US\)) to be sure for our analysis.

10.2 Analysis of technology indicators

Analysis for hig tech to make usable data for compare interest rate. We are going to calculate mean value for all indicators to compare other plots. The other one which is using just high tech to find any increasing, then take just Charges for the use of intellectual property, payments (BoP, current US$). The last one is going to filter significant dates used the same with interest rate.

10.3 Compare between High tech and the other indicators

Firstly we looked the indictaors which can be usable the select the benefical one.

The plot shows us there is a relation between indicators and interest rate. When the interest rate is going to down, some indicators which are making big exports are going to up.

10.4 Join two tables to analyze

## `geom_smooth()` using method = 'loess' and formula 'y ~ x'

## `geom_smooth()` using method = 'loess' and formula 'y ~ x'

10.5 Conclusion of techonolgy export and interest rate relationship

And again we are going to see rates and indicators name. The last tech exports analysis is going to compare between tech export and interest rates. However we are not going to say that there is not enough evidence to make a decision.

11 Relationship Between Interest Rate And Foreign Trade

The last day of each month were added as a date, the foreign trade figure of each month were added as a value and the valid interest rate for each date were added to rows for each date. Interest rates which did not coincide with any date were excluded from the dataset. 2010-05-31 is the first date and 2019-10-31 is the last date. Foreign trade data source is TÜİK.

12 Conclusion

13 References