-
R erro 해결법 : Error in `[.data.frame`(x, order(x, na.last = na.last, decreasing = decreasing)) : undefined columns selectedError Handling 2018. 11. 11. 21:14반응형
R에서 아래와 같은 함수를 순차적으로 시행 시킬 때
> women > quantile(women)
아래와 같은 오류가 나는 경우가 있다.
Error in `[.data.frame`(x, order(x, na.last = na.last, decreasing = decreasing)) : undefined columns selected
이 오류는 칼럼을 정확히 명시하지 않았다는 말이며 괄호() 안에 데이터가 잘못 들어갔다는 말이다.
따라서
quantile(women) 을
> quantile(women[,1])
과 같은 식으로 원하는 열을 지정해 준다.
반응형'Error Handling' 카테고리의 다른 글