1
I tried several ways but I can’t make Scrapping from the following table:
http://www2.bmf.com.br/pages/portal/bmfbovespa/boletim1/TxRef1.asp.
Until now through the following code:
library("rvest")
URL <-'http://www2.bmf.com.br/pages/portal/bmfbovespa/boletim1/TxRef1.asp'
bfm.tx <- URL %>%
xml2::read_html() %>%
html_nodes(xpath = '//*[@id="tb_principal1"]') %>%
html_table()
tx.df <- bfm.tx [[1]]
However no information is returned. I tried to use excel, but the button calls a function inside the site.