我试图抓住这个网站上的交易数据:https://emma.msrb.org/IssuerHomePage/Issuer?id=F5FDC93EE0375953E043151E0A0AA7D0&type=M
这应该是一个相当简单的过程,但我运行此代码:
Section MyFirstSection
StrCpy $InstDir "$InstDir\ProductName" ; Force extra sub-directory
; ...
SectionEnd
我收到以下错误:
library(rvest)
url <- "https://emma.msrb.org/IssuerHomePage/Issuer?
id=F5FDC93EE0375953E043151E0A0AA7D0&type=M"
deals <- url %>%
read_html() %>%
html_nodes(xpath='//*[@id="lvTrades"]') %>%
html_table()
deals <- deals[[1]]
除此之外,似乎刮不回任何文字。关于我做错什么的任何想法?对不起,如果这看起来有点基本,我对这种刮痧的东西比较新。