R語言 select

library(tidyverse) library(nycflights13) # 檢索單個列 flights %>% select(year) head(flights) # 檢索多個列 flights %>% select(year,month,day) # flights有哪些列名稱: flights %>% names() # 檢索以「time」結尾的列 flights %>% sele
相關文章
相關標籤/搜索