데이터분석/Preprocessing

R eval parse 예

늘근이 2018. 4. 13. 08:43

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

가 뜨므로 무조건 예민하게 잘 해주도록 한다.