I searched up and down but could not find any solution that would fit for the purpose.
I would like to scrape this page (table)
https://www.fxstreet.com/rates-charts/usdjpy/forecast
I tried couple of ways but could not get the data scrapped into a table.
library(XML)
library(RCurl)
url <-"https://www.fxstreet.com/rates-charts/usdjpy/forecast"
url2 <- getURL(url)
parsed <- htmlParse(url2)