从R的coinmarketcap.com获取数据

时间:2017-07-05 02:01:43

标签: r web-scraping

我正在尝试建立比特币和其他一些较大硬币的历史性能数据库。为此,我想从这个URL(带有这些特定日期)中提取主表到r:

https://coinmarketcap.com/currencies/bitcoin/historical-data/?start=20130428&end=20170705

在r中执行此操作的最佳方法和方法是什么?

由于

1 个答案:

答案 0 :(得分:3)

rvest包在这里很有用:

library(rvest)

url <-read_html("https://coinmarketcap.com/currencies/bitcoin/historical-data/?start=20130428&end=20170705")

table <- url %>% 
  html_table() %>% 
  as.data.frame()