creating a heatmap from ExpressionSet
2
2
Entering edit mode
8.7 years ago

I've merged 3,GSE from geoDB, and now I have a gene ExpressionSet,is it possible tu create a heatmap from ExpressionSet or I should preprocessing that before I could draw a heatmap?

R • 3.4k views
ADD COMMENT
0
Entering edit mode

Are you asking how to make a heatmap from an ExpressionSet, or about how to normalize data from 3 GSE records?

ADD REPLY
0
Entering edit mode

My dataset is normalized,I want to make a heatmap

ADD REPLY
4
Entering edit mode
8.7 years ago
# eset is an ExpressionSet
sds = apply(exprs(eset),1,sd)
library(gplots)
# heatmap of the top 100 most variable genes
heatmap.2(exprs(eset)[order(sds,decreasing=TRUE)[1:100],])
ADD COMMENT
1
Entering edit mode
8.7 years ago
Shicheng Guo ★ 9.4k

You should not do it because the number of probe is to large. The pdf of the heatmap would be come up to 50-100M. I think you need select the differential expression/methylation probes and then do the heatmap.

ADD COMMENT
0
Entering edit mode

Thank you Mr. Shicheng Guo, could you tell me,how I can select differential expression probe in my ExpressionSet?

ADD REPLY

Login before adding your answer.

Traffic: 1980 users visited in the last hour
Help About
FAQ
Access RSS
API
Stats

Use of this site constitutes acceptance of our User Agreement and Privacy Policy.

Powered by the version 2.3.6