0

I have two data sets in R. The first one contains a list of time zone names:

enter image description here

The second one is a list of dates.

enter image description here

I would like to comnbine them such that the data looks like the following:

enter image description here

How can I achieve this in R?

Neicooo
  • 197
  • 1
  • 9

1 Answers1

1

Please try the below code

library(dplyr)

tz %>% full_join(dates, by = character(0))
Darren Tsai
  • 32,117
  • 5
  • 21
  • 51
jkatam
  • 2,691
  • 1
  • 4
  • 12