tsne_wide | R Documentation |
Title
tsne_wide( data, id_col = NULL, perplexity = 30, remove_non_numeric_columns = TRUE, remove_zero_variance_columns = TRUE, check_duplicates = TRUE, input_is_mutable_datatable = FALSE, return_preprocessed_dt = FALSE, ... )
data |
data to run TSNE on. Each row should be a sample. Must contain at leat one numeric column |
id_col |
name of the column in data that represents the sample identifier. |
perplexity |
tsne perplexity |
remove_non_numeric_columns |
remove non numeric columns (bool) |
remove_zero_variance_columns |
remove columns with zero variance (bool) |
check_duplicates |
Should Rtsne check for dups after PCA (bool) |
input_is_mutable_datatable |
are we allowed to mutate the input dataset in place (Should never be directly set - defaults to false) (bool) |
return_preprocessed_dt |
Don't run TSNE. Just preprocess the data then return the data.table bool |
... |
set any other argument of Rtsne |
Rtsne (tibble)
## Not run: tsne_wide(iris) ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.