Description Usage Arguments Examples
Generates a Sushi color palette
1 | SushiColors(palette = "fire")
|
palette |
The name of the Sushi palette to return. For list of available palettes try (SushiColors(list)) |
1 2 3 4 5 6 7 8 9 10 11 12 | plot(1,xlab='',xaxt='n',ylab='',yaxt='n',xlim=c(0,8),ylim=c(2,8),type='n',bg="grey")
for (i in (2:7))
{
points(x=(1:i),y=rep(i,i),bg=SushiColors(i)(i),cex=3,pch=21)
}
axis(side=2,at=(2:7),labels=(2:7),las=2)
axis(side=1,at=(1:7),labels=(1:7))
mtext("SushiColors",side=3,font=2, line=1, cex=1.5)
mtext("colors",side=1,font=2, line=2)
mtext("palette",side=2,font=2, line=2)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.