Learn R Programming

ggrgl (version 0.1.0)

geom_contour_filled_z: An extension of geom_contour into the third dimension.

Description

An extension of geom_contour into the third dimension.

Usage

geom_contour_filled_z(
  mapping = NULL,
  data = NULL,
  stat = "contour_filled_z",
  position = "identity",
  ...,
  bins = NULL,
  binwidth = NULL,
  breaks = NULL,
  na.rm = FALSE,
  show.legend = NA,
  inherit.aes = TRUE,
  extrude = FALSE,
  material = list(),
  keep2d = FALSE
)

geom_contour_z( mapping = NULL, data = NULL, stat = "contour_z", position = "identity", ..., bins = NULL, binwidth = NULL, breaks = NULL, lineend = "butt", linejoin = "round", linemitre = 10, na.rm = FALSE, show.legend = NA, inherit.aes = TRUE, extrude = FALSE, material = list(), keep2d = FALSE )

stat_contour_filled_z( mapping = NULL, data = NULL, geom = "contour_filled_z", position = "identity", ..., bins = NULL, binwidth = NULL, breaks = NULL, na.rm = FALSE, show.legend = NA, inherit.aes = TRUE, extrude = FALSE, material = list(), keep2d = FALSE )

stat_contour_z( mapping = NULL, data = NULL, geom = "contour_z", position = "identity", ..., bins = NULL, binwidth = NULL, breaks = NULL, na.rm = FALSE, show.legend = NA, inherit.aes = TRUE )

Arguments

mapping, data, stat, position, ..., bins, binwidth, breaks, lineend, linejoin, linemitre, na.rm, show.legend, inherit.aes

See documentation for ggplot2::geom_bar.

extrude

whether or not to extrude the polygon

material

Arguments passed to rgl::material3d() to specify the material properties for this geom. Any parameters specified in this argument override the defaults. See rgl documentation for more info. Also see ggrgl::standard_material for the standard default material parameters used for all objects.

keep2d

keep the original 2d representation? default: FALSE

geom

geom for stat

Z Offset Geom

The z suffix indicates that this geom produces planar graphical elements, parallel to the ground i.e. the drawn element is the same as that for ggplot2 except it has a vertical offset (constant across each graphical element).

Geom Supports Extrusion

This geometry supports extrusion. Set extrude = TRUE and adjust aesthetics:

extrude_face_fill

The colour of the extruded faces. Default: 'grey20'

extrude_face_alpha

Alpha for the extruded faces. Default: 1

extrude_edge_colour

Colour of the edges of the extrusion. Default: NA (invisible)

extrude_edge_alpha

Alpha for the extruded edges. Default: 1

extrude_edge_size

Width of the line to draw the extruded edge. Default: 1

extrude_z

The lower limit of the extrudsion. Default: 0.05

See Also

Other zoffset geoms: geom_bar_z(), geom_density_z(), geom_point_z(), geom_polygon_z(), geom_rect_z(), geom_ribbon_z(), geom_text_z(), geom_tile_z()

Other geoms supporting extrusion: geom_bar_z(), geom_density_z(), geom_path_3d(), geom_point_z(), geom_polygon_z(), geom_rect_z(), geom_ribbon_z(), geom_segment_3d(), geom_tile_z()