I have a huge data set with genotypic information from different populations. I would like to sort the data by population, but I don't know how.
I would like to sort by "pedigree_dhl". I was using the following code, but I kept getting error messages.
newdata <- project[pedigree_dhl == CCB133$*1, ]
My problem is also, that 'pedigree-dhl' contains all the names of the individual genotypes. Only the first 7 letters in the column 'pedigree-dhl' are the population name.In this example:CCB133. How can I tell R, that I want to extract the data for all columns, that contain CCB133?
Allele1 Allele2 SNP_name gs_entry pedigree_dhl
1 T T ZM011407_0151 656 CCB133$*1
2 T T ZM009374_0354 656 CCB133$*1
3 C C ZM003499_0591 656 CCB133$*1
4 A A ZM003898_0594 656 CCB133$*1
5 C C ZM004887_0313 656 CCB133$*1
6 G G ZM000583_1096 656 CCB133$*1
substrallows you to extract substrings of a character vector. You'll want to make sure your column is in fact a character vector and not a factor before usingsubstror you may get some unexpected results. For subsetting, search SO forR subsetand you'll find many answers. Thesubset()function itself is quite useful for interactive session, while using the[operator is preferred in certain situations. – Chase Apr 25 '12 at 16:08