% layer_-6ren">
gpt4 book ai didi

r - ggvis 密度图 + xlim + xlab

转载 作者:行者123 更新时间:2023-12-01 11:38:39 27 4
gpt4 key购买 nike

我正在尝试学习如何使用 ggvis。基本上,我想重现这个 ggplot2 图表:

library(ggplot2)
m <- ggplot(mtcars, aes(x = wt))
m + geom_density(aes(fill="orange"), size=2, alpha=.9) + xlim(0,5) + theme_bw() +
xlab("x label") + guides(fill=FALSE)

现在我有这个:

mtcars %>% ggvis(~wt, fill := "red") %>% 
layer_densities() %>%
add_axis("x", title = "Weight") %>%
scale_numeric("x", domain = c(0, 5), nice = FALSE)

但我不知道如何做 xlim(0,5)

感谢您的帮助!

最佳答案

答案应归功于 hadley,谢谢!

mtcars %>% ggvis(~wt, fill := "red") %>% 
layer_densities() %>%
add_axis("x", title = "Weight") %>%
scale_numeric("x", domain = c(0, 5), nice = FALSE, clamp = TRUE)

关于r - ggvis 密度图 + xlim + xlab,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/24491783/

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