Learn R Programming

Polychrome (version 1.2.3)

invertColors: Inverting the Plot Device Color Scheme

Description

Function to convert the default plot color scheme to white-on-black.

Usage

invertColors(...)

Arguments

Other graphical parameters to be given to par.

Value

It returns the original color scheme, which can be passed to the par command to restore the original values.

Details

This function changes the default color scheme of the current graphics device to white on black. Note that since invertColors resets the bg parameter, you should avoid passing in a new default value for the col parameter.

See Also

par

Examples

Run this code
# NOT RUN {
opar <- invertColors()
plot(1:3, 4:6, pch=16)
par(opar)
# }

Run the code above in your browser using DataLab