tsne_wide: Title

View source: R/RtsneWide.R

tsne_wideR Documentation

Title

Description

Title

Usage

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,
  ...
)

Arguments

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

Value

Rtsne (tibble)

Examples

## Not run: 
tsne_wide(iris)

## End(Not run)

selkamand/utilitybelttsne documentation built on March 4, 2023, 11:52 a.m.