> 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
Archive maintained by Robert King, hosted by
the discipline of
statistics at the
University of Newcastle,
Australia.
Archive generated by hypermail 2.2.0, at Thu 01 May 2008 - 16:30:34 GMT.
Mailing list information is available at https://stat.ethz.ch/mailman/listinfo/r-help. Please read the posting guide before posting to the list.