| Revision: 1905
          http://sourceforge.net/p/r-gregmisc/code/1905
Author:   warnes
Date:     2014-12-02 01:39:19 +0000 (Tue, 02 Dec 2014)
Log Message:
-----------
plot.dendrogram isn't exported by gplots, so it must be referenced using the ':::' notation.
Modified Paths:
--------------
    trunk/gplots/tests/test_plottingDeepDendrogram.R
Modified: trunk/gplots/tests/test_plottingDeepDendrogram.R
===================================================================
--- trunk/gplots/tests/test_plottingDeepDendrogram.R	2014-12-02 01:38:01 UTC (rev 1904)
+++ trunk/gplots/tests/test_plottingDeepDendrogram.R	2014-12-02 01:39:19 UTC (rev 1905)
@@ -10,10 +10,10 @@
 dend <- as.dendrogram(cluster)
 
 ## R's default recursion limits will be exceeded when plotting this dendrogram
-try( plot.dendrogram(dend) )
+try( gplots:::plot.dendrogram(dend) )
 try( heatmap.2(dat, Rowv=dend) )
 
 ## Increase them and try again
 options("expressions"=20000)
-plot.dendrogram(dend)
+gplots:::plot.dendrogram(dend)
 heatmap.2(dat, Rowv=dend)
This was sent by the SourceForge.net collaborative development platform, the world's largest Open Source development site.
 |