Hi all,

I want to do the following:

data<-data.frame(col1=c(1,2,3,4,5))

getcol2<-function(data){
    data$col2[data$col1<=2]="L"
}

getcol2(data)

Unfortunately in the above col2 does not appear in the final data. So how
would you pass this by reference such that you would get it back?

Thanks,
Sachin

        [[alternative HTML version deleted]]

______________________________________________
R-help@r-project.org mailing list
https://stat.ethz.ch/mailman/listinfo/r-help
PLEASE do read the posting guide http://www.R-project.org/posting-guide.html
and provide commented, minimal, self-contained, reproducible code.

Reply via email to