On Aug 24, 2012, at 1:03 PM, ramoss <ramine.mossad...@finra.org> wrote:
> I am new to R and I have the following SAS statements: > > if otype='M' and ocond='1' and entry='a.Prop' then MOC=1; > else MOC=0; > > How would I translate that into R code? > > Thanks in advance See ?ifelse and ?Logic, both of which are covered in "An Introduction to R" (http://cran.r-project.org/manuals.html). MOC <- ifelse((otype == 'M') & (ocond == '1') & (entry == 'a.Prop'), 1, 0) You might also want to think about getting a copy of: R for SAS and SPSS Users Robert Muenchen http://www.amazon.com/SAS-SPSS-Users-Statistics-Computing/dp/0387094172 Regards, Marc Schwartz ______________________________________________ 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.