Re: [R] elseif syntax

2008-05-01 Thread Christos Hatzis
r" "same""bigger" "bigger" "bigger" -Christos > -Original Message- > From: [EMAIL PROTECTED] > [mailto:[EMAIL PROTECTED] On Behalf Of jim holtman > Sent: Thursday, May 01, 2008 11:30 AM > To: Hyunchul Kim > Cc: r-help@r-

Re: [R] elseif syntax

2008-05-01 Thread jim holtman
Is this what you want: x <- 1 if (x ==1){ print('same') } else if (x > 1){ print('bigger') } else { print('smaller') } On Thu, May 1, 2008 at 10:52 AM, Hyunchul Kim <[EMAIL PROTECTED]> wrote: > Hi, all > > How to use elseif ? > For example, like following short python examples. > > *

[R] elseif syntax

2008-05-01 Thread Hyunchul Kim
Hi, all 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' * Thanks in advance, Hyunchul Kim [[alternative HTML version deleted]] __

Re: [R] elseif syntax

2008-05-01 Thread Richard . Cotton
> 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'),

[R] elseif syntax

2008-05-01 Thread Hyunchul Kim
Hi, all 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' * Thanks in advance, Hyunchul Kim [[alternative HTML version deleted]] __