gpt4 book ai didi

r - ggvis 中的图例方向

转载 作者:行者123 更新时间:2023-12-01 23:43:06 26 4
gpt4 key购买 nike

在ggvis中如何使图例垂直?

mtcars %>% ggvis(x = ~wt, y = ~mpg, fill = ~cyl) %>%
layer_points() %>%
add_legend("fill",properties = legend_props( legend = list(x = 500, y = 50)))

它将图例水平放置。我希望它是垂直的。

最佳答案

试试下面的代码:

mtcars %>% ggvis(~wt, ~mpg, size = ~cyl, fill = ~cyl) %>% layer_points() %>% add_legend(c("size", "fill"))

输出图表:

enter image description here

希望这对您有所帮助。

编辑:

我探索了 add_legend 属性,不幸的是,目前我还没有看到使用 ggvis 实现垂直连续缩放图例的任何方法,但是可以使用 实现ggplot2

R代码:

ggplot(mtcars, aes(wt, mpg, color = cyl))+geom_point()

输出图表:

enter image description here

关于r - ggvis 中的图例方向,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30396854/

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