Hello,
I am trying to use the following function:
f<-function(x, y){
a<-select(x, y)
return(a)
}
f(sniegas, Birzai)
for me, this function looks okay, but when I try to run it with a variables "f(sniegas, Birzai)" I receive this error "Error in .f(.x[[i]], ...) : object 'Birzai' not found". Does anyone know why this error appear?
Thanks in advance