DublinLearningGroup / dataexpks

This package creates a kickstart rmarkdown document that automatically performs some basic data exploration for the supplied dataset.
MIT License
3 stars 2 forks source link

line 771 Error in Rtsne.default(X, ...) : Remove duplicates before running TSNE. #8

Closed GRoughsedge closed 7 years ago

GRoughsedge commented 7 years ago

It was data_tsne <- Rtsne(tsne_tbl %>% select(one_of(numeric_vars))) I suggest data_tsne <- Rtsne(unique(tsne_tbl %>% select(one_of(numeric_vars))))

GRoughsedge commented 7 years ago

Line 787 is also affected

kaybenleroll commented 7 years ago

Closing this because the jitter in the numeric variables solves this problem.