Displaying 1 result from an estimated 1 matches for "1449x96".
2011 May 04
1
merging multiple columns from two dataframes
Hello,
I have data in a dataframe with 139104 rows which is multiple of 96x1449. i
have a phenotype file which contains the phenotype information for the 96
samples. the snp name is repeated 1449X96 samples. I haveto merge the two
dataframes based on sid and sen. this is how my two dataframes look like
dat<-data.frame(snpname=rep(letters[1:12],12),sid=rep(1:12,each=12),
genotype=rep(c('aa','ab','bb'), 12))
pheno<-data.frame(sen=1:12,disease=rep(c(&...