代码之家  ›  专栏  ›  技术社区  ›  Robbert Raats

R中的双聚类

  •  5
  • Robbert Raats  · 技术社区  · 8 年前

    我想通过对R中的二进制矩阵进行聚类来应用。有一个很好的包叫做“biclust”,但它确实如此,而且并没有显示我想要的所有内容。

    我有一个二进制矩阵,如下所示:

    1 0 0 1 0 1 0
    0 0 0 0 0 0 0
    0 0 1 0 1 0 0
    1 0 0 1 0 1 0
    0 0 1 0 1 0 0
    1 0 0 1 0 1 0
    0 0 0 0 0 0 0
    

    我的目标是将其分簇(并显示)如下(可能是彩色的):

    1 1 1 0 0 0 0
    1 1 1 0 0 0 0
    1 1 1 0 0 0 0
    0 0 0 1 1 0 0
    0 0 0 1 1 0 0
    0 0 0 0 0 0 0
    0 0 0 0 0 0 0
    

    # install.packages("biclust") (if necessary)
    library("biclust")
    
    testMatrix <- matrix(c(1,0,0,1,0,1,0,
                           0,0,0,0,0,0,0,
                           0,0,1,0,1,0,0,
                           1,0,0,1,0,1,0,
                           0,0,1,0,1,0,0,
                           1,0,0,1,0,1,0,
                           0,0,0,0,0,0,0),
                         nrow = 7,
                         ncol = 7,
                         byrow = TRUE)
    

    testCluster <- biclust(x = testMatrix, method=BCBimax())
    

    实际上,我得到了预期的两个集群:

    An object of class Biclust 
    call:
    biclust(x = testMatrix, method = BCBimax())
    Number of Clusters found:  2 
    First  2  Cluster sizes:
                          BC 1  BC 2
    Number of Rows:       3     2
    Number of Columns:    3     2
    

    我可以通过以下方式分别显示簇:

    drawHeatmap(x = testMatrix, bicResult = testCluster, number = 1) # shown in picture below
    drawHeatmap(x = testMatrix, bicResult = testCluster, number = 2)
    

    Picture

    我可以通过以下方式显示整个聚类矩阵(左上角的一个聚类):

    drawHeatmap2(x = testMatrix, bicResult = testCluster, number = 1) # shown in picture below
    drawHeatmap2(x = testMatrix, bicResult = testCluster, number = 2)
    

    Picture

    到目前为止还不错,但我想:

    1. 显示器颜色已切换。现在,1是红色的,0是绿色的。
    2. 我想看看原始矩阵的行和列。现在只显示了特定集群的行号和列号(使用drawHeatMap),而在整个集群矩阵(drawHeat Map2)中没有显示行号和列号。

    这些更改是否可行(使用“biclust”包)?还是用另一种方法用R更好?

    1 回复  |  直到 8 年前
        1
  •  3
  •   Robbert Raats    7 年前

    更改biclust源包包中的drawHeatmap()函数:

    1. 跟踪(“drawHeatmap”,编辑=TRUE)
    2. 更改以下内容:
      (a) 切换红色和绿色-在调用rgb()中切换rvect和gvect
      (b) 原始行名而不是新行名-将“labels=”更改为“=bicCols”和“=birRows”。
    3. 打印行号:轴之前关于行:cat(bicRows)。
    4. 将行号保存到文件-轴之前关于行:write(bicRows,file=“FILENAME.txt”)