由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Statistics版 - 如何做microarray的scatter plot图?
相关主题
请教一下microarray的分析[合集] 请教一个统计问题
大家看看罗氏的这个职位到底是做统计还是Simulation & Molding啊?quick question in R
有没有弄生统的知道 library(sma)? 怎么装不了这个library啊?为什么不能把ABLINE加到散点图中了
Bioinformatics Position in a Genomics Center in a University in the Southern California请教一个r的问题
Bioinformatics Position in a Genomics Center in a University in the Southern CaliforniaR: how to convert a scatter plot to a contour color plot?
大侠 Help! microarray Quality ControlHow to plot multi-curves in one single chart by R
R 里面的怎么批量画图求助--基因之间表达量回归分析软件
adding colors to data points in scatter plot in RSAS plot question
相关话题的讨论汇总
话题: data话题: group话题: plot话题: scatter话题: microarray
进入Statistics版参与讨论
1 (共1页)
l******e
发帖数: 125
1
想比较两样品表达谱的相似性,如何作出x-y轴散点图,>log2的红色,<-log2的蓝色,
中间的灰色。对matlab不懂,stanford 的SAM怎么用不了?有什么软件推荐么。R里怎
么做?
多谢!
g******2
发帖数: 234
2
suppose your data is a data frame with 2 columns: x and y.
data$group <- 1
data$group[data$x < - log(2)] <- 2
data$group[data$x > log(2)] <- 3
plot(data$x[data$group == 1], data$y[data$group == 1], xlab = "x", ylab = "y
", xlim = range(data$x), ylim = range(data$y))
points(data$x[data$group == 2], data$x[data$group == 2], col = "blue")
points(data$x[data$group == 3], data$x[data$group == 3], col = "red")
S******6
发帖数: 752
3
Bioconductor
1 (共1页)
进入Statistics版参与讨论
相关主题
SAS plot questionBioinformatics Position in a Genomics Center in a University in the Southern California
data prediction by regression or better ways大侠 Help! microarray Quality Control
PCA作图R 里面的怎么批量画图
一般什么样的数据,分析起来要做log transformation?adding colors to data points in scatter plot in R
请教一下microarray的分析[合集] 请教一个统计问题
大家看看罗氏的这个职位到底是做统计还是Simulation & Molding啊?quick question in R
有没有弄生统的知道 library(sma)? 怎么装不了这个library啊?为什么不能把ABLINE加到散点图中了
Bioinformatics Position in a Genomics Center in a University in the Southern California请教一个r的问题
相关话题的讨论汇总
话题: data话题: group话题: plot话题: scatter话题: microarray