boxplot_rjs: Produce interactive box-and-whisker plot(s).

Description Usage Arguments Value Author(s) See Also Examples

View source: R/boxplot.R

Description

boxplot_rjs produce interactive box-and-whisker plot(s) of the given values.

Usage

1
2
3
boxplot_rjs(data, xlab = "", ylab = "",
            outline = TRUE, col = NULL, ylim = NULL, cex = 1,
            plot = TRUE, jupyter = FALSE, dir = tempdir())

Arguments

data

a Data Frame or Matrix from which the data for each box will be taken.

outline

if outline is not true, the outliers are not drawn.

col

if 'col' is non-null it is assumed to contain colors to be used to colour the bodies of the box plots.

xlab

a title for the x axis.

ylab

a title for the y axis.

ylim

a vector with two values which specifies the Y minimun and maximun values in the representation.

cex

number indicating the amount by which plotting text and symbols should be scaled relative to the default.

plot

open resulting graph in your browser.

jupyter

embed the graph as an iframe into a Jupyter Notebook.

dir

a "character" string representing the directory where the graph will be saved.

Value

The function creates a folder in your computer with an HTML document named index.html which contains the graph. This file can be directly opened with your browser.

Author(s)

David Barrios and Carlos Prieto. Bioinformatics Service of Nucleus, University of Salamanca. See https://bioinfo.usal.es/

See Also

The ‘RJSplot’ Website: https://rjsplot.usal.es

dendrogram_rjs, densityplot_rjs, genomemap_rjs, heatmap_rjs, manhattan_rjs, network_rjs, scatterplot_rjs, symheatmap_rjs, wordcloud_rjs, boxplot_rjs, bubbles_rjs, hiveplot_rjs, piechart_rjs, barplot_rjs, tables_rjs, surface3d_rjs, scatter3d_rjs.

Examples

1
2
3
4
5
## Create an interactive boxplot in a temporal directory of your local machine
## Live examples on https://rjsplot.usal.es
if(interactive()){
boxplot_rjs(attitude, "attitude", "favourable responses")
}

RJSplot documentation built on Dec. 11, 2021, 9:36 a.m.

Related to boxplot_rjs in RJSplot...