Skip to content
Prev 65501 / 398513 Next

simple if...else causes syntax error

from the help page of ?"if" (not "?if") you get:

Note that it is a common mistake to forget to put braces `({..})' 
around your statements, e.g., after `if(..)' or `for(...)'. In 
particular, you should not have a newline between `}' and `else' to 
avoid a syntax error ...

So you should use:

aaa <- 5
if ( aaa==5 ) {
   aaa <- 6
} else {
   aaa <- 7
}


Best,
Dimitris

----
Dimitris Rizopoulos
Ph.D. Student
Biostatistical Centre
School of Public Health
Catholic University of Leuven

Address: Kapucijnenvoer 35, Leuven, Belgium
Tel: +32/16/336899
Fax: +32/16/337015
Web: http://www.med.kuleuven.ac.be/biostat/
     http://www.student.kuleuven.ac.be/~m0390867/dimitris.htm


----- Original Message ----- 
From: "roger bos" <roger.bos at gmail.com>
To: <R-help at stat.math.ethz.ch>
Sent: Monday, March 07, 2005 4:16 PM
Subject: [R] simple if...else causes syntax error