tsne减少了尺寸缩减过程中的情况

时间:2018-08-10 11:06:42

标签: r

具有388行的数据帧COLS_SOURCE通过tsne放置。 然后将所得的二维与COLS_SOURCE合并以重新获取行的ID。

在绑定时,我得到一条消息,即两个数据帧的长度(行)不相同。这怎么可能?

Tsne_with_ID = cbind.data.frame(COLS_SOURCE [,1],tsne_model_1 $ Y) data.frame(...,check.names = FALSE)错误:   参数暗示行数不同:388、386

# I.2 TSNE (t-Distributed Stochastic Neighbor Embedding)
set.seed(123)  
tsne_model_1 = Rtsne(COLS_SOURCE, check_duplicates=FALSE, pca=TRUE, perplexity=30, theta=0.5, dims=2)

Tsne_with_ID = cbind.data.frame(COLS_SOURCE[,1],tsne_model_1$Y)

0 个答案:

没有答案