Displaying 1 result from an estimated 1 matches for "rs2106776".
Did you mean:
r106776
2008 Feb 25
3
Logical statements and subseting data...
...There is just one row (out of 45840) that I'd like to remove and it
can be identified using....
> dim(raw.all.clean)
[1] 45840 10
> subset(raw.all.clean, Height.1 == 0 & Height.2 == 0)
Sample.Name Well SNP Allele.1 Allele.2 Size.1 Size.2 Height.1
47068 CA0153 O02 rs2106776 NA NA 0
Height.2 Pool
47068 0 3
(Note that the row index of 47068 which is higher than the rows
reported by dim() is simply because I have already removed a number of
rows).
So I want to remove this one instance where Height.1 == 0 & Height.2
=...