RColorBrewer space out palletes

123 Views Asked by At

I'm new to R and I can't really understand graphs yet.

library(RColorBrewer)

display.brewer.all(n=NULL, type="all", select=NULL, exact.n=TRUE, 
                   colorblindFriendly=TRUE)

Output

This is the output. How do I space out elements?

1

There are 1 best solutions below

0
manro On

I have the same corrupted output.

But if you work in RStudio - the imposition after zooming is disappeared.

Also you can try:

windows()
display.brewer.all(n=NULL, type="all", select=NULL, exact.n=TRUE, 
                   colorblindFriendly=TRUE)

or

library(zoom)
display.brewer.all(n=NULL, type="all", select=NULL, exact.n=TRUE, 
                   colorblindFriendly=TRUE)
zm()