Merging two datasets to create a two axis chart

Hola Sergio,

The others are right – it would help to have a reprex. Regardless, it seems you have a few different problems:

  1. Dates are in different formats
  2. Merging the datasets
  3. Plotting different 'facets' of the data.

Here are some resources to solve each:

  1. lubridate package, for working with dates: https://lubridate.tidyverse.org/
  2. joins in dplyr, to merge your data: Mutating joins — mutate-joins • dplyr
  3. facet wrapping in ggplot2: 17 Faceting | ggplot2

Best,
Tom