colour-mixing-math {palettes} | R Documentation |
Mix colour vectors with math functions
Description
These functions mix colour vectors with math functions.
Usage
## S3 method for class 'palettes_colour'
sum(..., na.rm = FALSE)
## S3 method for class 'palettes_colour'
cumsum(x)
Arguments
... |
Colour vectors of class |
na.rm |
Whether to include missing values. Either |
x |
An object of class |
Value
These functions return colour vectors of class
palettes_colour
:
-
sum()
returns the sum of all the colours present in its arguments with additive colour mixing. -
cumsum()
returns a vector whose elements are the cumulative sums of the elements of the argument with additive colour mixing.
Examples
x <- pal_colour(c("red", "blue"))
sum(x)
x <- pal_colour(c("red", "blue", "yellow"))
cumsum(x)
[Package palettes version 0.2.1 Index]