在R語言中,可以使用下列方法選取多個列:
df <- data.frame(col1 = c(1, 2, 3), col2 = c(4, 5, 6), col3 = c(7, 8, 9))
selected_cols <- df[, c(1, 3)] # 選取第一列和第三列
selected_cols <- df[, c("col1", "col3")] # 選取名為"col1"和"col3"的列
selected_cols <- df[, c(TRUE, FALSE, TRUE)] # 選取第一列和第三列
select()
函數選取列(需要安裝和加載dplyr
包):library(dplyr)
selected_cols <- select(df, col1, col3) # 選取名為"col1"和"col3"的列
以上方法都可以按照需要選取多個列。