标签: r axis direction ggvis
如何在ggvis图中改变轴方向?
例如,y轴。我希望原点位于图形的左上方(我已经通过放置orient =" top"将我的x轴放到顶部。)
data %>% ggvis(~XX, ~YY) %>% layer_points() %>% add_axis("y", title = "Y title") %>% add_axis("x", title = "X title", orient ="top")
答案 0 :(得分:1)
我相信您需要scale_numeric reverse = TRUE参数才能翻转范围的顺序。
scale_numeric
reverse = TRUE
以下是基于mtcars数据集的示例。
mtcars
library(ggvis) mtcars %>% ggvis(~wt, ~mpg) %>% layer_points() %>% add_axis("x", orient = "top") %>% scale_numeric("y", reverse = TRUE)