In R, I am trying to webscrape the all working paper # (e.g, 31424, 31481, etc) of the following webpage:
I trying to run the following code to get such:
url<-"https://www.nber.org/papers?facet=topics%3AFinancial%20Economics&page=1&perPage=50&sortBy=public_date"
page=read_html(url)
name=page%>%html_nodes(".paper-card__paper_number")%>%html_text()
However, this code returns character(0), NOT giving me the working paper # s. Is there any way I can modify this code to get the working paper # s?