安裝 Quantmod套件,在Console畫面中輸入install.packages('quantmod'),安裝Quantmod套件。
輸入以下R程式碼,抓取2330台積電資料並股價圖
library("quantmod", lib.loc="c:/Program Files/R/R-3.2.1/library") tw2330 = getSymbols("2330.TW", auto.assign=FALSE) chartSeries(tw2330, theme=chartTheme("white"))
參考資料