I've 5 data frames that I downloaded. They all are similar with the exception that they show data from different years 2015, 2016, 2017, 2018 and 2019:
book_15 <- read_excel("data/book_15.xlsx")
book_16 <- read_excel("data/book_16.xlsx")
book_17 <- read_excel("data/book_17.xlsx")
book_18 <- read_excel("data/book_18.xlsx")
book_19 <- read_excel("data/book_19.xlsx")
Now I want to combine these in a single tibble that looks like this:
arrange(year)
Code year
A 2015
B 2015
C 2015
D 2015
E 2015
F 2015
#With 750 more rows
Should I use join function
or something similar?