barplot3d: Adds a 3D bar plot to the current RGL scene

Description Usage Arguments Value Examples

View source: R/barplot3d.R

Description

Adds a 3D bar plot to the current RGL scene

Usage

1
2
3
4
5
barplot3d(rows, cols, x, y, z, alpha = 1, scalexy = 1, gap = 0.2,
  topcolors = c("#000000"), sidecolors = c("#aaaaaa"),
  linecolors = c("#000000"), theta = 50, phi = 40,
  gridlines = TRUE, xlabels = FALSE, ylabels = FALSE,
  zlabels = TRUE, xsub = FALSE, ysub = FALSE, zsub = FALSE)

Arguments

rows

How many rows the plotting area should have, an integer, e.g. 5.

cols

How many columns the plotting area should have, an integer, e.g. 5.

x

The x dimensions of each 3D bar, a vector of length 2 e.g. c(0,1).

y

The y dimensions of each 3D bar, a vector of length 2 e.g. c(0,1).

z

The height of each 3D bar, a numeric vector, e.g c(2,3,5,2,9).

alpha

The alpha channel (transparency) of the sides of 3D bars. Range 0-1.

scalexy

Scaling factor for x and y coordinates; this constant can be used to make the plot "skinnier" or "fatter".

gap

Gap between 3D bars (recommended values are 0 or 0.2).

topcolors

The color of the top of each 3D bar. Numeric vector of hexadecimal RGB colors, like those returned by rgb() e.g. "#078E53".

sidecolors

The color of the top of the bar. Should be a hexadecimal RGB color, like that returned by rgb() e.g. "#aaaaaa".

linecolors

The color of the edges of the bar. Should be a hexadecimal RGB color, like that returned by rgb() e.g. "#aaaaaa".

theta

Polar coordinate for viewing the 3D barplot; range 0 to 360 (rotates the plot).

phi

Polar coordinate for viewing the 3D barplot; range -90 to 90 (-90 is directly below, 90 directly above).

gridlines

Draw gridlines on the plot (TRUE or FALSE).

xlabels

Labels for the x axis (must be a vector of names the same length as "cols" parameter).

ylabels

Labels for the y axis (must be a vector of names the same length as "rows" parameter).

zlabels

Labels for the z axis; add numeric scale to the vertical dimension of the plot (TRUE or FALSE).

xsub

Descriptive label for the x axis.

ysub

Descriptive label for the y axis.

zsub

Descriptive label for the z axis.

Value

Nothing is returned (invisibly returns NULL).

Examples

1
2
barplot3d(rows=3,cols=5,z=1:12,topcolors=rainbow(12),alpha=0.7,scalexy=10,
xlabels=c("One","Two","Three","Four","Five"),ylabels=LETTERS[1:3])

barplot3d documentation built on Nov. 6, 2019, 5:08 p.m.