0
indices <- c(2,5,9)
customer是data.frame。通過傳遞索引的列表/向量來獲取data.frame中值的列表/向量
我想索引的索引位置中的客戶第2列的值列表。
names <- as.list(customer[,2] << indices)
indices <- c(2,5,9)
customer是data.frame。通過傳遞索引的列表/向量來獲取data.frame中值的列表/向量
我想索引的索引位置中的客戶第2列的值列表。
names <- as.list(customer[,2] << indices)
這聽起來像你想從數據框中做一個簡單的提取。請嘗試:
customer[indices, 2]
Merci bien ........ – Selvam