[R] if then else

Jim Lemon jim at bitwrit.com.au
Sun Oct 1 03:37:50 CEST 2006


Jue.Wang2 at sanofi-aventis.com wrote:
> What is the correct form to write statement meaning:
> 
> if (a==1) {b=2; c=3}; else {b=0; c=0};
> 
if (a==1) {b=2; c=3} else {b=0; c=0};

Jim



More information about the R-help mailing list