[R] filter out observation by condition

2007-07-18 Thread sigalit mangut-leiba
hello,
I have a longitudinal data:
idn mort30  newinfec
1   0   1
1   0   1
1   0   1
1   0   1
2   1   1
2   1   1
2   1   1
3   0   0
3   0   0
3   0   0
3   0   0
3   0   0

and i want to filter out those obs. that has mort30==1 (mort30 is constant
over idn).
how can i use if...else and filter out those unwanted obs.?
I appriciate the help,
sigalit.

[[alternative HTML version deleted]]

__
R-help@stat.math.ethz.ch 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.


Re: [R] filter out observation by condition

2007-07-18 Thread Uwe Ligges


sigalit mangut-leiba wrote:
 hello,
 I have a longitudinal data:
 idn mort30  newinfec
 1   0   1
 1   0   1
 1   0   1
 1   0   1
 2   1   1
 2   1   1
 2   1   1
 3   0   0
 3   0   0
 3   0   0
 3   0   0
 3   0   0
 
 and i want to filter out those obs. that has mort30==1 (mort30 is constant
 over idn).
 how can i use if...else and filter out those unwanted obs.?
 I appriciate the help,
 sigalit.


subset(data, mort30 != 1)

Uwe Ligges



   [[alternative HTML version deleted]]
 
 __
 R-help@stat.math.ethz.ch 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.

__
R-help@stat.math.ethz.ch 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.