tsne_plot {TOmicsVis}R Documentation

TSNE plot for analyzing and visualizing TSNE algorithm.

Description

TSNE plot for analyzing and visualizing TSNE algorithm.

Usage

tsne_plot(
  sample_gene,
  group_sample,
  seed = 1,
  multi_shape = FALSE,
  point_size = 5,
  point_alpha = 0.8,
  text_size = 5,
  text_alpha = 0.8,
  fill_alpha = 0.1,
  border_alpha = 0,
  sci_fill_color = "Sci_AAAS",
  legend_pos = "right",
  legend_dir = "vertical",
  ggTheme = "theme_light"
)

Arguments

sample_gene

Dataframe: All genes in all samples expression dataframe of RNA-Seq (1st-col: Genes, 2nd-col~: Samples).

group_sample

Dataframe: Samples and groups for gene expression (1st-col: Samples, 2nd-col: Groups).

seed

Numeric: set seed for robust result. Default: 1.

multi_shape

Logical: groups as shapes. Default: FALSE, options: TRUE, FALSE.

point_size

Numeric: point size. Default: 5, min: 0, max: null.

point_alpha

Numeric: point color alpha. Default: 0.80, min: 0.00, max: 1.00.

text_size

Numeric: text size. Default: 5, min: 0 (hind), max: null.

text_alpha

Numeric: text alpha. Default: 0.80, min: 0.00, max: 1.00.

fill_alpha

Numeric: ellipse alpha. Default: 0.30, min: 0.00, max: 1.00.

border_alpha

Numeric: ellipse border color alpha. Default: 0.10, min: 0.00, max: 1.00.

sci_fill_color

Character: ggsci color pallet. Default: "Sci_AAAS", options: "Sci_AAAS", "Sci_NPG", "Sci_Simpsons", "Sci_JAMA", "Sci_GSEA", "Sci_Lancet", "Sci_Futurama", "Sci_JCO", "Sci_NEJM", "Sci_IGV", "Sci_UCSC", "Sci_D3", "Sci_Material".

legend_pos

Character: legend position. Default: "right", options: "none", "left", "right", "bottom", "top".

legend_dir

Character: legend direction. Default: "vertical", options: "horizontal", "vertical".

ggTheme

Character: ggplot2 themes. Default: "theme_light", options: "theme_default", "theme_bw", "theme_gray", "theme_light", "theme_linedraw", "theme_dark", "theme_minimal", "theme_classic", "theme_void"

Value

Plot: TSNE plot for analyzing and visualizing TSNE algorithm.

Author(s)

benben-miao

Examples

# 1. Library TOmicsVis package
library(TOmicsVis)

# 2. Use example dataset
data(gene_expression)
head(gene_expression)

data(samples_groups)
head(samples_groups)

# 3. Default parameters
tsne_plot(gene_expression, samples_groups)

# 4. Set sci_fill_color = "Sci_NPG", seed = 6
tsne_plot(gene_expression, samples_groups, sci_fill_color = "Sci_NPG", seed = 6)

# 5. Set multi_shape = TRUE, fill_alpha = 0.00
tsne_plot(gene_expression, samples_groups, multi_shape = TRUE, fill_alpha = 0.00)


[Package TOmicsVis version 2.0.0 Index]