R에서 제일 구린것중 하나가 eval parse가 아닐까 싶다.
string_lag_selection <- paste("raw_onehot_lag"," <- select(raw_onehot,temperature, lag",index,")", sep="")
eval(parse(text = string_lag_selection))
text 명시를 해주지 않으면
Error in file(filename, "r") : cannot open the connection
가 뜨므로 무조건 예민하게 잘 해주도록 한다.
'데이터분석 > Preprocessing' 카테고리의 다른 글
[링크] lag spark scala (0) | 2018.05.05 |
---|---|
R에서의 NA처리 na.approx 주의와 NA채우는 꼼수 (0) | 2018.04.21 |
결측치 제거를 위한 몇가지 팁 (0) | 2017.08.13 |
%in% 연산자.. (0) | 2017.08.10 |
R - reshape를 이용한 데이터 핸들링 (0) | 2017.08.09 |