Re: [R] creating a subset of a dataset using ifelse statement?

2005-12-13 Thread Ferdinand Alimadhi
?ifelse ; it's clear that you can use it in your case. Where cluster_q is comming from ( I suppose is the column name you want to filter by!)? What if you use the simpler syntax : if(h1) mp2-mp1 else mp2-subset(mp1b,cluster_q==h) ? THT t c wrote: I am using R in a Microsoft Windows

Re: [R] creating a subset of a dataset using ifelse statement?

2005-12-13 Thread Uwe Ligges
t c wrote: I am using R in a Microsoft Windows environment. I have a dataset called “mp1b”. I have a variable called h. h can take a value from -1 to 5. If h 1, I want to create a new dataset called mp2 that is the same as mp1b: “mp2-mp1b” If h 0, I want