Description of the x axis in R

31 views Asked by At

I wrote a function in R to do hierarchical clustering.

Klasteryzacja_hierarchiczna = function(ExprSet,a,b,c,d) {
Klasteryzacja_h =exprs(ExprSet)'
clusters = hclust(dist(Klasteryzacja_h[a:b,c:d]))'
plot(clusters,xlab="Clusters")'
}

but it gave me this:

enter image description here Do you know how to get rid of hclust(*,"complete")?

1

There are 1 answers

0
G5W On BEST ANSWER

You need to set the sub parameter.

plot(clusters, xlab="Clusters", sub="")