Understanding Turkey Automative Market

“Turkey is a dynamic automative market with high dependency on import automative figures. The following report grasps insight related to market mechanism, provided by ODD which has the vision of providing the continuity and improvement of automotive sector as having the international competitive capacity within the concept of modernity, environmental awareness and social responsibility”. Please check for the details of ODD foundation web site

**Note: In this project, we focused on mostly charts and graphs since we believe that it is quite catchy and informative rather than text based tables

Source Page

To craft the structure of the work related to the Turkish automative market, gathering big data is essential from ODD’s reports panel. Bounding ODD’scommercial retail sales reports contributes to the reconstructed data frame. Structural steps can be found below.

file.list <- list.files(pattern='your file pattern')
data_frames_not_bound <- lapply(file.list,read_excel,col_names=column_names_vector)
bound_data_frames <- bind_rows(data_frames_not_bound)

Upload of Civilized Data

In order to enhance reproduceable source, civilized data to group’s GitHub page.

tmp <- tempfile(fileext = ".xlsx")
download.file("https://github.com/pjournal/mef03g-polatalemd-r/blob/master/dfson.xlsx?raw=true",destfile = tmp,mode = 'wb')
dfson <- readxl::read_excel( tmp ,col_names = TRUE)
file.remove(tmp)
head(dfson)
## # A tibble: 6 x 13
##    ...1 brand_name auto_dom auto_imp auto_total comm_dom comm_imp
##   <dbl> <chr>         <dbl>    <dbl>      <dbl>    <dbl>    <dbl>
## 1     1 ALFA ROMEO        0       12         12        0        0
## 2     2 ASTON MAR~        0        2          2        0        0
## 3     3 AUDI              0      911        911        0        0
## 4     4 BENTLEY           0        0          0        0        0
## 5     5 BMW               0      496        496        0        0
## 6     6 CHERY             0       30         30        0        0
## # ... with 6 more variables: comm_total <dbl>, total_dom <dbl>,
## #   total_imp <dbl>, total_total <dbl>, month <dbl>, year <dbl>