r语言 ggplot 为什么不能变成对数坐标
发布网友
发布时间:2022-04-20 07:54
我来回答
共2个回答
热心网友
时间:2023-10-07 14:07
ggplot2包可以用来绘图,其中的geom_text函数可以设置标签:
library(plyr)
library(ggplot2)
library(scales)
dtf <- data.frame(x = c("ETB", "PMA", "PER", "KON", "TRA",
"DDR", "BUM", "MAT", "HED", "EXP"),
y = c(.02, .11, -.01, -.03, -.03, .02, .1, -.01, -.02, 0.06))
ggplot(dtf, aes(x, y)) +
geom_bar(stat = "identity", aes(fill = x)) +
geom_text(aes(label = paste(y * 100, "%"),
vjust = ifelse(y >= 0, 0, 1))) +
scale_y_continuous("Anteil in Prozent", labels = percent_format())
热心网友
时间:2023-10-07 14:07
这个 我经常碰到 我的方法就是把 R更新到最新版本 就行了