heatmap.2 keeps default settings despite specified
1
0
Entering edit mode
8.9 years ago
epermina • 0

Hi all,

can you point what am I doing wrong here? there bound to be some stupid mistake, but it keeps escaping me. I'm trying to get rid of key, tracing and dendrograms, but they still appear in the image.

The code is the following:

> FDR.corr.genes.table<-read.csv("FDR.corr.genes.table.csv", header = T, sep = ",", row.names = 1)
> library(gplots)

> heatmap.2(as.matrix(FDR.corr.genes.table, key = F, trace = c("none"), dendrogram = c("none"), labRow = F))

I also tried to change trace colour instead of just turning it off, but it stayed cyan, which leads me to believe that I'm doing something wrong in a more major way. I've also tried trace = "none" instead trace = c("none").

Thanks!

http://i.gyazo.com/c8fb1f1dc048bff030e3d76860ca1888.png

R • 2.4k views
ADD COMMENT
2
Entering edit mode
8.9 years ago
Ming Tommy Tang ★ 3.9k

You missed a bracket:

heatmap.2(as.matrix(FDR.corr.genes.table), key = F, trace = c("none"), dendrogram = c("none"), labRow = F)
ADD COMMENT

Login before adding your answer.

Traffic: 3431 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