0
Talk people! I’m trying to extract the information from the investment bonds on ANBIMA’s website, but I’m not getting it. This is the example of the page I want to get the information. https://data.anbima.com.br/fundos/592889 At the bottom of the page is the Periodic Data information which is a table where I located the tag to extract the information using the "inspect" option from the browser. But when I use the following command lines
library(rvest)
anbima <- read_html('https://data.anbima.com.br/fundos/592889#dadosPeriodicos')
tab1 <- html_elements(anbima, 'table')
The data returns empty.
Someone can help me?