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

gcc - MinGW's ld cannot perform PE operations on non PE output file -

How to connect android app to App engine -

hadoop - Running Map Reduce Job shows error - Mkdirs failed to create /var/folders/ -