I am provided with the following tibble..
tibble(store="store a")
..and want to expand it with the same observation 30 times, like this:
tibble(store=rep("store a", 30))
# A tibble: 30 x 1
store
<chr>
1 store a
2 store a
3 store a
4 store a
5 store a
6 store a
7 store a
8 store a
9 store a
10 store a
# ... with 20 more rows