당신은 그런 종류의 부분 집합을 할 수 없습니다 $
. 소스 코드 ( R/src/main/subset.c
)에서 다음과 같이 설명합니다.
/ * $ 하위 집합 연산자.
우리는 첫 번째 주장 만 평가해야합니다.
두 번째는 평가되지 않고 일치해야하는 기호입니다.
* /
두 번째 논쟁? 뭐?! 당신은 그 실현이 $
R에서 다른 모든 것들처럼, (예를 들면 포함, (
, +
, ^
인수를 평가하는 기능이며, 등). df$V1
다음과 같이 다시 작성할 수 있습니다.
`$`(df , V1)
또는 실제로
`$`(df , "V1")
그러나...
`$`(df , paste0("V1") )
... 예를 들어 결코 작동하지 않을 것이며 두 번째 인수에서 먼저 평가되어야하는 다른 어떤 것도 작동하지 않을 것입니다. 평가 되지 않는 문자열 만 전달할 수 있습니다 .
대신 사용하십시오 [
(또는 [[
단일 열만 벡터로 추출하려는 경우).
예를 들면
var <- "mpg"
#Doesn't work
mtcars$var
#These both work, but note that what they return is different
# the first is a vector, the second is a data.frame
mtcars[[var]]
mtcars[var]
를 사용하여 do.call
에 대한 호출을 생성 하여 루프없이 순서를 수행 할 수 있습니다 order
. 다음은 재현 가능한 예입니다.
# set seed for reproducibility
set.seed(123)
df <- data.frame( col1 = sample(5,10,repl=T) , col2 = sample(5,10,repl=T) , col3 = sample(5,10,repl=T) )
# We want to sort by 'col3' then by 'col1'
sort_list <- c("col3","col1")
# Use 'do.call' to call order. Seccond argument in do.call is a list of arguments
# to pass to the first argument, in this case 'order'.
# Since a data.frame is really a list, we just subset the data.frame
# according to the columns we want to sort in, in that order
df[ do.call( order , df[ , match( sort_list , names(df) ) ] ) , ]
col1 col2 col3
10 3 5 1
9 3 2 2
7 3 2 3
8 5 1 3
6 1 5 4
3 3 4 4
2 4 3 4
5 5 1 4
1 2 5 5
4 5 3 5