Hi i am very new to R and I have been trying to change each individual piece of data in a data set to 10 if it is below 0 and 5 if it is above 0. I know this sounds very easy but i am struggling!! -- View this message in context: http://www.nabble.com/For-loop-for-distinguishing-negative-numbers-tp24499872p24499872.html Sent from the R help mailing list archive at Nabble.com.
see ?ifelse you didn't specify what happens if a value is exactly zero in the dataset and so i've just bundled it in with the negative case: x <- rnorm(20, 0, 1) y<-ifelse(x<=0, 10, 5) HTH, Tony Breyal cmga20 wrote:> > Hi i am very new to R and I have been trying to change each individual > piece of data in a data set to 10 if it is below 0 and 5 if it is above 0. > I know this sounds very easy but i am struggling!! >-- View this message in context: http://www.nabble.com/For-loop-for-distinguishing-negative-numbers-tp24499872p24500973.html Sent from the R help mailing list archive at Nabble.com.
Maybe Matching Threads
- Distinguishing trunk version number from release
- [LLVMdev] Distinguishing Pointer Variable and Ordinary Variable
- What has happened to the R-Help Google Groups Archive? Alternative?
- Extracting text from html code using the RCurl package.
- How to suppress errors from htmlTreeParse() function in XML package?