scale_colour_r2dii_tech {r2dii.plot} | R Documentation |
Custom 2DII technology colour and fill scales
Description
A custom discrete colour and fill scales with colours from 2DII technology palette.
Usage
scale_colour_r2dii_tech(sector, technologies = NULL, ...)
scale_fill_r2dii_tech(sector, technologies = NULL, ...)
Arguments
sector |
A string. Sector name specifying a colour palette. Run
|
technologies |
A character vector. Specifies technologies to use as
colours and their order. Run
|
... |
Other parameters passed on to |
Value
An object of class "ScaleDiscrete".
See Also
Other r2dii scales:
scale_colour_r2dii()
,
scale_colour_r2dii_sector()
Examples
library(ggplot2, warn.conflicts = FALSE)
ggplot(mpg) +
geom_point(aes(displ, hwy, color = class)) +
scale_colour_r2dii_tech("automotive")
ggplot(mpg) +
geom_histogram(aes(cyl, fill = class), position = "dodge", bins = 5) +
scale_fill_r2dii_tech("automotive")
[Package r2dii.plot version 0.4.0 Index]