資料處理技巧(2) 資料處理技巧(2)
install.packages(c(magrittr,tidyr,dplyr)) install.packages(tidyverse) #上面三個包都在其中 library(tidyverse) cars %>% summary(
2018-09-06
探索資料分析 R 探索資料分析 R
以下的語法都是參考 「輕鬆學習R語言 從基礎到應用,掌握資料科學的關鍵能力」 這本書所作的筆記 iris 是R內建的dataset nrow(iris) #顯示有幾個觀測值 ncol(iris) #顯示有幾個變數 dim(iris) #顯示
2018-07-17
Reading and Writing Data 抓出指定變數或觀測值 Reading and Writing Data 抓出指定變數或觀測值
Use the built-in data set airquality. Extract the first 4 rows of the data frame and print them to the console.write.
2018-05-09