Scraping site ANBIMA on R

Asked

Viewed 38 times

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?

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.