gpt4 book ai didi

r - 将文本标签添加到 ggplot2 马赛克图

转载 作者:行者123 更新时间:2023-12-04 12:43:32 28 4
gpt4 key购买 nike

使用以下数据:

Category <- c("Bankpass", "Bankpass", "Bankpass", "Moving", "Moving")
Subcategory <- c("Stolen", "Lost", "Login", "Address", "New contract")
Weight <- c(10,20,13,40,20)
Duration <- as.character(c(0.2,0.4,0.5,0.44,0.66))
Silence <- as.character(c(0.1,0.3,0.25,0.74,0.26))
df <- data.frame(Category, Subcategory, Weight, Duration, Silence)

我用它来创建以下马赛克图:
library (ggplot2)
library (ggmosaic)

g <- ggplot(data = df) +
geom_mosaic(aes(weight = Weight, x = product(Category), fill = Duration),
offset = 0, na.rm = TRUE) +
theme(axis.text.x = element_text(angle = -25, hjust = .1)) +
theme(axis.title.x = element_blank()) +
scale_fill_manual(values = c("#e8f5e9", "#c8e6c9", "#a5d6a7", "#81c784", "#66bb6a"))

enter image description here

这是有效的,但是我想在图表上的元素上包含文本标签(“显示 fe 被盗,丢失”等)

但是,当我这样做时:
g + geom_text(x = Category, y = Subcategory, label = Weight)

我收到以下错误:

Error in UseMethod("rescale") : no applicable method for 'rescale' applied to an object of class "character"



关于这里出了什么问题的任何想法?

最佳答案

这是我的尝试。 x 轴位于离散变量(即类别)中。所以你不能在 geom_text() 中使用它.您不知何故需要为轴创建一个数字变量。同样,您需要找到标签在 y 轴上的位置。为了获得两个维度的数值,我决定访问留在图形后面的数据框。当您使用 ggmosaic包,在这种情况下,图形后面有一个数据框。您可以使用 ggplot_build() 获取它.您可以使用数据框中的信息(例如 xmin 和 xmax)计算 x 和 y 值。这是个好消息。但是,我们也有坏消息。当您访问数据时,您会意识到没有关于标签所需的子类别信息。

我们可以克服将上面的数据框与原始数据连接起来的挑战。当我加入数据时,我计算了原始数据和其他数据的比例。这些值特意转换为字符。 temp是添加标签所需的数据集。

library(dplyr)
library(ggplot2)
library(ggmosaic)

# Add proportion for each and convert to character for join

df <- group_by(df, Category) %>%
mutate(prop = as.character(round(Weight / sum(Weight),3)))

# Add proportion for each and convert to character.
# Get x and y values for positions
# Use prop for join

temp <- ggplot_build(g)$data %>%
as.data.frame %>%
transmute(prop = as.character(round(ymax - ymin, 3)),
x.position = (xmax + xmin) / 2,
y.position = (ymax + ymin) / 2) %>%
right_join(df)

g + geom_text(x = temp$x.position, y = temp$y.position, label = temp$Subcategory)

enter image description here

关于r - 将文本标签添加到 ggplot2 马赛克图,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48041886/

28 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com