How to change axis direction in ggvis plot?
For example, y-axis. I want an origin to be on left top of the graph (I already put my x-axis to the top by putting orient ="top").
data %>% 
  ggvis(~XX, ~YY) %>% 
  layer_points() %>% 
  add_axis("y", title = "Y title") %>% 
  add_axis("x", title = "X title", orient ="top")
 
     
    
