ggvis中的形状名称

时间:2017-05-06 03:04:01

标签: r shiny ggvis

在ggvis属性中可以将形状指定为

mtcars %>% 
    ggvis(~wt,~mpg, shape= ~factor(cyl)) %>%
    layer_points()

enter image description here

我不知道如何设置比例。我相信它应该使用scale_nominal。但到目前为止我还没有成功。

我可以改变事物的顺序

mtcars  %>% 
    ggvis(~wt,~mpg, shape= ~factor(cyl)) %>%
    layer_points()  %>% scale_nominal('shape',c(8,6,4))

enter image description here

但我不能强迫它们成为我想要的形状。

在ggplot中,我希望使用scale_shape_manual

mtcars %>% ggplot(aes(x = wt,y = mpg, shape= factor(cyl))) +
    geom_point() + 
    scale_shape_manual(values = c('4' = 15, '6' = 18, '8' = 3))

enter image description here

请注意,如果我删除所有4,则保留其他形状

mtcars %>% 
    filter(cyl!=4) %>% 
    ggplot(aes(x = wt,y = mpg, shape= factor(cyl))) +
        geom_point() + 
        scale_shape_manual(values = c('4' = 15, '6' = 18, '8' = 3))

enter image description here

1 个答案:

答案 0 :(得分:0)

与ggplot' s scale_{whatever}_manual不同,您无法在单个变量中设置值的范围。在scale_nominal domainrange变量中控制这些属性。

mtcars  %>% 
    ggvis(~wt,~mpg, shape= ~factor(cyl)) %>%
    layer_points()  %>% 
    scale_nominal('shape',domain = c(4,6,8),range = c('square','cross','diamond'))

enter image description here

请注意,ggvis允许有限的形状调色板:圆形(默认),方形,十字形,菱形,三角形或三角形