作者:白介素2
相关阅读:
R语言配色方案02-RcolorBrewer包
R语言配色方案01-colortools
R语言生存分析03-Cox比例风险模型
R语言生存分析-02-ggforest
R语言生存分析-01
ggpubr-专为学术绘图而生(二)
ggstatsplot-专为学术绘图而生(一)
生存曲线
R语言GEO数据挖掘01-数据下载及提取表达矩阵
R语言GEO数据挖掘02-解决GEO数据中的多个探针对应一个基因
R语言GEO数据挖掘03-limma分析差异基因
R语言GEO数据挖掘04-功能富集分析
如果没有时间精力学习代码,推荐了解:零代码数据挖掘课程
R语言配色03-wesanderson配色包
library(wesanderson)
可供选择的色板名称包括:
BottleRocket1, BottleRocket2, Rushmore1, Royal1, Royal2, Zissou1, Darjeeling1, Darjeeling2, Chevalier1 , FantasticFox1 , Moonrise1, Moonrise2, Moonrise3, Cavalcanti1, GrandBudapest1, GrandBudapest2, IsleofDogs1, IsleofDogs2
调用颜色的方法
wes_palette函数
wes_palette("Cavalcanti1", 3)
wes_palette("Royal1")
image.png
调用颜色配图
调用方法类似于RcolorBrewer
# simple barplot
barplot(c(2,5,7), col=wes_palette(n=3, name="GrandBudapest2"))
image.png
library(ggplot2)
ggplot(iris, aes(Sepal.Length, Sepal.Width, color = Species)) +
geom_point(size = 2) +
scale_color_manual(values = wes_palette(n=3, name="GrandBudapest2"))
image.png
本期内容就到这里,我是白介素2,下期再见
参考资料链接
网友评论