I need to get information from the following link https://dashboard-baltic.electricity-balancing.eu/en/bids-activated/index?period=search&show=report&start=2020-01-01&end=2020-10-16&type=normal
I tried following two methods, however with no result:
1)
url<-paste("https://dashboard-baltic.electricity-balancing.eu/en/bids-activated/index?period=search&show=report&start=2020-01-01&end=2020-10-16&type=normal")
df.np <- readHTMLTable(htmlTreeParse(getURL(url), useInternalNodes=TRUE))[[1]]
2)
url<-GET("https://dashboard-baltic.electricity-balancing.eu/en/bids-activated/index?period=search&show=report&start=2020-01-01&end=2020-10-16&type=normal")
data <- read.table(text = content(url, "text"), sep = ",",
header = TRUE,
na.strings = c("-", "", "n/e"))
Can anybody help?