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]]
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]]
> 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}}
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 <hyunchul.love.me at gmail.com> wrote:> 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-help at r-project.org mailing list > https://stat.ethz.ch/mailman/listinfo/r-help > PLEASE do read the posting guide http://www.R-project.org/posting-guide.html > and provide commented, minimal, self-contained, reproducible code. >-- Jim Holtman Cincinnati, OH +1 513 646 9390 What is the problem you are trying to solve?