[R] elseif syntax
    Richard.Cotton at hsl.gov.uk 
    Richard.Cotton at hsl.gov.uk
       
    Thu May  1 17:09:18 CEST 2008
    
    
  
> How to use elseif ?
> For example, like following short python examples.
> 
> *********
> x = 1
> if x == 1:
>   print 'same'
> *elif* x > 1:
>   print 'bigger'
> else:
>   print 'smaller'
> *********
x=1
if(x==1) print('same') else if(x>1) print('bigger') else print('smaller')
See help('if'), ?ifelse and the Intro to R manual, section 9.2.1
Regards,
Richie.
Mathematical Sciences Unit
HSL
------------------------------------------------------------------------
ATTENTION:
This message contains privileged and confidential inform...{{dropped:20}}
    
    
More information about the R-help
mailing list