glimma_plot: Glimma plot manager

Description Usage Arguments Value Examples

View source: R/glimma.R

Description

Core glimma plot manager. Generates environment for glimma plots.

Usage

1
2
3
4
5
6
7
8
9
glimma_plot(
  ...,
  layout = c(1, 1),
  path = getwd(),
  folder = "glimma-plots",
  html = "index",
  overwrite = TRUE,
  launch = TRUE
)

Arguments

...

the jschart or jslink objects for processing.

layout

the numeric vector representing the number of rows and columns in plot window.

path

the path in which the folder will be created.

folder

the name of the fold to save html file to.

html

the name of the html file to save plots to.

overwrite

the option to overwrite existing folder if it already exists.

launch

TRUE to launch plot after call.

Value

Generates interactive plots based on filling layout row by row from left to right.

Examples

1
2
3
4
data(iris)

plot1 <- glScatter(iris, xval="Sepal.Length", yval="Sepal.Width", colval="Species")
glimma_plot(plot1, c(1,1))

Shians/Glimma documentation built on April 1, 2020, 5:46 a.m.