私は通り抜けたマトリックスを持っています
l = cutree (clus, k = 1:j)
次のようになります。
bs 1 1 1 1 2
x 1 1 2 2 3
v 1 1 2 2 3
e 1 1 2 2 3
nn 1 1 1 3 4
j 1 2 3 4 5
ここで、次を使用して l をファイルに書き込みたいと思いました。
write(l, file = "datia", ncolumns = 6)
However, only the Numbers are piped to the file, not the labels.
How can I change this?