[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]]

[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 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. *

Re: [R] elseif syntax

2008-05-01 Thread Christos Hatzis
: [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-project.org Subject: Re: [R] elseif syntax Is this what you want: x - 1 if (x ==1){ print('same') } else if (x 1){ print('bigger') } else