R に 24 行 10,000 列の数値行列があります。この行列の行名は基本的に、24 行のそれぞれに対応するデータを読み取ったファイル名です。これとは別に、24 個のファイルが属するグループを指定して、24 個の全体を含む別の因子リストがあります。アルコール、炭化水素、エステルの 3 つのグループがあります。名前と、それらが属する対応するグループは次のようになります。
> MS.mz
[1] "int-354.19" "int-361.35" "int-368.35" "int-396.38" "int-408.41" "int-410.43" "int-422.43"
[8] "int-424.42" "int-436.44" "int-438.46" "int-452.00" "int-480.48" "int-648.64" "int-312.14"
[15] "int-676.68" "int-690.62" "int-704.75" "int-312.29" "int-326.09" "int-326.18" "int-326.31"
[22] "int-340.21" "int-340.32" "int-352.35"
> MS.groups
[1] Alcohol Alcohol Alcohol Alcohol Hydrocarbon Alcohol Hydrocarbon Alcohol
[9] Hydrocarbon Alcohol Alcohol Alcohol Ester Alcohol Ester Ester
[17] Ester Alcohol Alcohol Alcohol Alcohol Alcohol Alcohol Hydrocarbon
Levels: Alcohol Ester Hydrocarbon
樹状図を生成して、マトリックス内のデータをどのようにクラスター化できるかを調べたいと思いました。したがって、次のコマンドを使用しました。
require(vegan)
dist.mat<-vegdist(MS.data.scaled.transposed,method="euclidean")
clust.res<-hclust(dist.mat)
plot(clust.res)
そして私は樹状図を得ました。ここで、樹状図のファイル名を、それらが属するグループ、つまりアルコール、炭化水素、またはエステルに応じて色付けしたいと考えています。フォーラムに投稿されたさまざまな例を見ました
ape パッケージを使用した R の葉の樹状図のラベル付けと色付け
、しかし私のデータには実装できませんでした。樹形図で色付きの名前を取得するために、row.names を MS.groups と関連付ける方法がわかりません。
( https://nycdatascience.com/wp-content/uploads/2013/09/dendextend-tutorial.pdfで説明されているように) dendextend を使用してツリーを生成すると、次のツリーが得られます。
これを生成するために使用されるコードは次のとおりです。
require(colorspace)
d_SIMS <- dist(firstpointsample5[,-1])
hc_SIMS <- hclust(d_SIMS)
labels(hc_SIMS)
dend_SIMS <- as.dendrogram(hc_SIMS)
SIMS_groups <- rev(levels(firstpointsample5[, 1]))
dend_SIMS <- color_branches(dend_SIMS, k = 3, groupLabels = SIMS_groups)
is.character(labels(dend_SIMS))
plot(dend_SIMS)
labels_colors(dend_SIMS) <- rainbow_hcl(3)[sort_levels_values(as.numeric(firstpointsample5[,1])[order.dendrogram(dend_SIMS)])]
labels(dend_SIMS) <- paste(as.character(firstpointsample5[, 1])[order.dendrogram(dend_SIMS)],"(", labels(dend_SIMS), ")", sep = "")
dend_SIMS <- hang.dendrogram(dend_SIMS, hang_height = 0.1)
dend_SIMS <- assign_values_to_leaves_nodePar(dend_SIMS, 0.5,"lab.cex")
par(mar = c(3, 3, 3, 7))
plot(dend_SIMS, main = "Clustered SIMS dataset\n (the labels give the true m/z groups)",horiz = TRUE, nodePar = list(cex = 0.007))
legend("topleft", legend = SIMS_groups, fill = rainbow_hcl(3))