轴文本偏移量为ggvis

时间:2015-06-18 16:03:31

标签: r ggvis

一个简短而快速的问题,是否有一种方法来偏移轴上的文本(而不是标题文本)enter image description here,因为我使用的是相当大的x轴(以90°的角度对齐)文字背后的情节......

这是我的代码:::

的轴部分
add_legend("fill", title = "Score") %>%
  add_axis("x", orient = 'top', title = "Sample",title_offset=50,properties=axis_props(labels = list(angle=-90, fontSize=6))) %>%
  add_axis("y", orient = 'right', title = "Class")

1 个答案:

答案 0 :(得分:1)

是的,你需要使用tick_padding参数。我提供了一个例子,因为我无法重现你的情节。

没有偏移:

library(ggvis)
mtcars %>% ggvis(~mpg, ~wt) %>% layer_points() 

enter image description here

这是使用tick_padding(偏移量以像素为单位):

mtcars %>% ggvis(~mpg, ~wt) %>% layer_points() %>%
  add_axis("x", tick_padding=20)

enter image description here