【R语言系列02】R作图中的标注虚线,文本,阴影误差带
【以往专题】
【R语言系列01】拼贴操作 paste 与 paste0
本期将从几个模拟实例当中提供一些常用作图技巧的分享。
需要的包:
reshape2
进行长宽表转换ggplot2
ggplot作图ggthemes
设置主题
Example 1 The histogram of normalized std
效果
代码
set.seed(824)
std_list = seq(-0.75, 1.00, 0.025)
number_list = sort(rnorm(71, 5, 2))
adjust_list = 10^number_list + rexp(71, 0.001
ShowPoint = function(x, col_, labels_, lx, ly){
index = (x + 0.75) / 0.025 + 1
segments(x, 10, x, adjust_list[index], col = col_, lty = 4, lwd = 2)
segments(-1.25, adjust_list[index], x, adjust_list[index], col = col_, lty = 4, lwd = 2)
text(x, adjust_list[index]*2, labels = labels_)
text(lx, ly, paste0(labels_,"(norm_std=",as.character(x)," num=",as.character(as.integer(adjust_list[index])),")"))
}
plot(std_list, adjust_list, col = 'blue', type = 'l', xlim = c(-1,1), ylim = c(100, max(adjust_list)), log='y', xlab = 'normalized std', ylab = 'the number of samples', main = 'The histogram of normalized std')
ShowPoint(-0.55, "green", "A", 0.6, 6400)
ShowPoint(-0.25, "orange", "B", 0.6,