paletteer包使用起来很简单,包中有4个主要的函数。函数用法: 代码语言:javascript 复制 # 离散型调色板scale_color_paletteer_d(palette,direction=1,dynamic=FALSE,...)scale_fill_paletteer_d(palette,direction=1,dynamic=FALSE,...)# 连续型调色板scale_color_paletteer_c(palette,direction=1,...)scale_f...
与ggsci包类似,paletteer包不仅可以使用paletteer_c(),paletteer_d(),paletteer_dynamic()函数提取具体颜色编码;也可以使用比例尺(scales)函数直接取代ggplot2原有scales函数。 scale 函数 #scale_color_paletteer_d() #scale_fill_paletteer_d() #scale_color_paletteer_c() #scale_fill_paletteer_c() libra...
mycols_2 <- paletteer_d("pals::kelly") mycols_3 <- paletteer_d("khroma::iridescent", n = 22) mycols_4 <- paletteer_d("palettesForR::Windows", n = 22) 彻底解决了颜色多需要手打的问题 6.放到画图函数中,修改参数即可: scale_fill_manual(values=mycols) 7.全部代码汇总: install.pack...