更改 ggally::ggcoef 中的术语名称
Changing the name of the terms in ggally::ggcoef
给出以下示例
iris_fat <- iris %>% mutate(is_fat = factor(ifelse(Sepal.Width * Petal.Width > 6 ,"fat", "not_fat")))
reg <- lm(Sepal.Length ~ Sepal.Width + Petal.Length + Petal.Width + is_fat, data = iris_fat)
GGally::ggcoef(reg)
如何将术语 is_fatnot_fat
的名称更改为其他名称。
我之前的评论不好,没仔细看
ggcoef 创建一个列表,就像其他 ggplot 函数一样。第一个元素 data 是一个数据帧,其中 term
映射到 y-axis。如果您好奇,请尝试 str(test_plot$data)
或在 RStudio
中检查它
test_plot <- ggcoef(reg)
test_plot$data$term <- c("(Intercept)", "is_fat", "Petal.Length", "Petal.Width", "Sepal.Width")
给出以下示例
iris_fat <- iris %>% mutate(is_fat = factor(ifelse(Sepal.Width * Petal.Width > 6 ,"fat", "not_fat")))
reg <- lm(Sepal.Length ~ Sepal.Width + Petal.Length + Petal.Width + is_fat, data = iris_fat)
GGally::ggcoef(reg)
如何将术语 is_fatnot_fat
的名称更改为其他名称。
我之前的评论不好,没仔细看
ggcoef 创建一个列表,就像其他 ggplot 函数一样。第一个元素 data 是一个数据帧,其中 term
映射到 y-axis。如果您好奇,请尝试 str(test_plot$data)
或在 RStudio
test_plot <- ggcoef(reg)
test_plot$data$term <- c("(Intercept)", "is_fat", "Petal.Length", "Petal.Width", "Sepal.Width")