Skip to content
This repository was archived by the owner on May 24, 2025. It is now read-only.

Latest commit

 

History

History
32 lines (23 loc) · 767 Bytes

File metadata and controls

32 lines (23 loc) · 767 Bytes

安裝說明

請在R console貼上下列script:

deps <- available.packages("http://taiwanrusergroup.github.io/R")[1,"Depends"]
pkgs <- strsplit(gsub("\\s", "", deps), ",")[[1]]
for(pkg in pkgs) {
  # You can change your favorite repository
  install.packages(pkg, repo = "http://cran.csie.ntu.edu.tw")
}
install.packages('DSC2014Tutorial', repo = 'http://taiwanrusergroup.github.io/R', type = 'source')

投影片

slides("Basic")
slides("ETL")

資料

  • cl_info_other
    • 可以直接使用data(cl_info_other載入data.frame
    • 可以使用system.file("Basic/cl_info_other.csv", packages="DSC2014Tutorial")來access .csv原始檔

範例

R Basic

  • 練習1, system.file("Basic/exercise1.R", packages="DSC2014Tutorial")