Displaying 2 results from an estimated 2 matches for "adjm".
Did you mean:
adam
2011 Sep 29
1
plot.igraph
...example of
this, in my script below, I want two edges to be visible from vertex 1 and
vertex 9 (among some others) yet when I plot it, only one edge is visible.
################################################################
gp1 = c(1,3,5,7,9)
gp2 = c(2,4,6,8,10)
gp3 = c(2,3,5,7)
gp4 = c(1,4,9)
adjm = numeric(100)
dim(adjm) = c(10,10)
for (i in 1:4){
gp = eval(as.symbol(paste("gp",i,sep="")))
N = length(gp)
for (j in 1:N){
for (k in j:N){
adjm[gp[k],gp[j]] = adjm[gp[k],gp[j]]+1
adjm[gp[j],gp[k]] = adjm[gp[k],gp[j]]
}
}
}
for(i in 1:10){adjm[i,i]=0}
require(ig...
2006 Jan 15
1
Multiple comparison and two-way ANOVA design
Dear useRs,
I'm working on multiple comparison design on two factor (2 3 levels)
ANOVA. Each of the tests I have tried (Tukey, multcomp package) seem to
do only with one factor at a time.
fm1 <- aov(breaks ~ wool * tension, data = warpbreaks)
tHSD <- TukeyHSD(fm1, "tension", ordered = FALSE)
$tension
diff lwr upr p adj
M-L -10.000000 -19.35342