Learn R Programming

palettes (version 0.2.1)

colour-mixing-math: Mix colour vectors with math functions

Description

These functions mix colour vectors with math functions.

Usage

# S3 method for palettes_colour
sum(..., na.rm = FALSE)

# S3 method for palettes_colour cumsum(x)

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.

Arguments

...

Colour vectors of class palettes_colour.

na.rm

Whether to include missing values. Either TRUE or FALSE.

x

An object of class palettes_colour.

Examples

Run this code
x <- pal_colour(c("red", "blue"))
sum(x)

x <- pal_colour(c("red", "blue", "yellow"))
cumsum(x)

Run the code above in your browser using DataLab