ggvis - add tooltip with count to layer_bars -


suppose have following graph

library(ggvis) mtcars%>% ggvis(~factor(cyl)) %>% layer_bars() 

how can add tooltip count variable?

thanks

this trick:

library(ggvis) mtcars  %>% ggvis(~factor(cyl)) %>% layer_bars() %>%   add_tooltip(function(df) (df$stack_upr_ - df$stack_lwr_)) 

Comments

Popular posts from this blog

powershell Start-Process exit code -1073741502 when used with Credential from a windows service environment -

twig - Using Twigbridge in a Laravel 5.1 Package -

c# - LINQ join Entities from HashSet's, Join vs Dictionary vs HashSet performance -