f***a 发帖数: 329 | 1 譬如说怎么在R中自动连接下面这个网址然后把data剥离出来。
http://finance.yahoo.com/q/hp?s=IBM
我知道在matlab里面怎么弄,不知道R里面是不是弄起来也不难。
matlab的话,主要就是用两个function: urlread用来retrieving the webpage,
regexp用
来extracting the date field.
不只谁有经验在R里面怎弄,望不吝赐教,呵呵~ | S******y 发帖数: 1123 | 2 It would be very easy in Python (if it is an option for you) -
http://www.goldb.org/ystockquote.html
import ystockquote
print ystockquote.get_historical_prices('IBM', '20101101','20101207')
################################################# | a****r 发帖数: 1486 | 3 R里也差不多啊。
看看url,readLines 这些functions
【在 f***a 的大作中提到】 : 譬如说怎么在R中自动连接下面这个网址然后把data剥离出来。 : http://finance.yahoo.com/q/hp?s=IBM : 我知道在matlab里面怎么弄,不知道R里面是不是弄起来也不难。 : matlab的话,主要就是用两个function: urlread用来retrieving the webpage, : regexp用 : 来extracting the date field. : 不只谁有经验在R里面怎弄,望不吝赐教,呵呵~
|
|