R语言中颜色代码的选择

论文图片是审稿人的第一印象,而图片的配色是其至关重要的一部分,选择合适的颜色会给人眼前一亮的感觉。简单列举两个:

R中颜色获取代码,完成后自动保存pdf格式在默认工作文件夹下:

pdf("colors-bar.pdf",heigh=120)

par(mar=c(0,10,3,0)+0.1,yaxs="i")

barplot(rep(1:length(colors())),col=rev(colors()),

        names.arg = rev(colors()),horiz=T,las=1,

                        xaxt="n",main=expression("Bar of colors in"~

                                                    italic(colors())))

颜色代码大全请点击:http://www.mamicode.com/info-detail-1448036.html

你可能感兴趣的:(R语言中颜色代码的选择)