Displaying 2 results from an estimated 2 matches for "dfdatafram".
Did you mean:
dfdataframe
2007 Oct 19
1
(no subject)
...k]
double_homo<- cbind( double_homo_i, double_homo_k)
double_homo.df<-data.frame(double_homo,Counts=2)
names(double_homo.df)[1]<-"L(A)a(i)"
names(double_homo.df)[2]<- "L(B)a(j)"
# Below takes each round throught he loop and puts in the result.dfdataframe.
count<-double_homo.df
almost.df<-aggregate(count$Counts, list(count[,1],count[,2]),
FUN=sum)
temp<-order(almost.df$Group.1)
final.df<-almost.df[temp,]
names(final.df)[1]<-"L(A)a(i)"
names(final.df)[2]<-"L(B)a(j)"
result.df<-merge(result.df,final.df,by=...
2007 Oct 19
1
conduct pairwise column comparisons without comparing a column to itself
...k]
double_homo<- cbind( double_homo_i, double_homo_k)
double_homo.df<-data.frame(double_homo,Counts=2)
names(double_homo.df)[1]<-"L(A)a(i)"
names(double_homo.df)[2]<- "L(B)a(j)"
# Below takes each round throught he loop and puts in the result.dfdataframe.
count<-double_homo.df
almost.df<-aggregate(count$Counts, list(count[,1],count[,2]),
FUN=sum)
temp<-order(almost.df$Group.1)
final.df<-almost.df[temp,]
names(final.df)[1]<-"L(A)a(i)"
names(final.df)[2]<-"L(B)a(j)"
result.df<-merge(result.df,final.df,by=...