其他
cowplot包:用R添加水印
Editor's Note
有趣的包!
The following article is from 生物信息学习 Author 生物信息学习
简介
为了保护自己的版权,我们经常会给文档等添加水印,那如何用r给图片添加水印呢?接下来学习如何给用cowplot包给图片添加水印。
简单教程
我们先用ggplot2做张图
library(ggplot2)
p <- ggplot(mpg, aes(x = cty, y = hwy, colour = factor(cyl))) +
geom_point()
p
cowplot::ggdraw(p)+draw_label("bioinfolearn",size=50,angle=35) #其中size设置水印字体大小,angle设置角度
设置透明度
cowplot::ggdraw(p)+draw_label("bioinfolearn",size=50,angle=35,alpha = .3)
修改水印颜色
cowplot::ggdraw(p)+draw_label("bioinfolearn",size=50,angle=35,alpha = .3,color ="green")