Displaying 2 results from an estimated 2 matches for "mmp1".
Did you mean:
mm1
2012 Feb 27
1
row names of a heatmap on left hand side
...MCP3", "IL6", "sRAGE", "IL1Ra",
"HGF", "TNFA", "IL8", "MIP1B", "TGFA", "sVEGFR2", "TPO", "FRACTALKINE",
"FLT3", "IP10", "MIG", "IGFBP6", "MMP1", "IGFBP7"), c("LEPTIN",
"CRP", "SAA", "IL7", "IL10", "TNFB", "IL5", "MCP3", "IL6", "sRAGE",
"IL1Ra", "HGF", "TNFA", "IL8", "MIP1B",...
2005 Oct 24
1
Basic: setting resolution and size of an R graphic
...makeBars(A,x.mean,x.se)
makeBars(B,y.mean,y.se)
makeBars(C,z.mean,z.se)
writeP(B - 0.05, y.mean,y.se,xy.pval)
writeP(C -0.05,z.mean,z.se,xz.pval)
}
## We will make a two part graphic
par(mfrow=c(1,2))
## X: 0
## y: 0.2 ??M
## z: 0.4 ??M
yTop <- 12 ## Limit for Y axis
## --- RT-PCR MMP1 --- ##
x <- c(0.8839034,0.42011158,0.65318013 , 0.88494528,1.900606, 1.2572536 )
x.mean <- mean(x)
x.se <- sd(x) / sqrt(length(x))
y <- c(5.067579666,2.630677502,1.881902881,1.61994864,3.356066695 )
y.mean <- mean(y)
y.se <- sd(y)/ sqrt(length(y))
z <-
c(13.38923048,3.677270...