I need to draw a combo chart including two series of bars and two lines using RBokeh. The syntax for adding bars and lines is quite simple but I cannot add a second y-axis. y_axis
position can be set to left or right but it does not work when I use them simultaneously.
p=figure(width = 600, height = 600) %>%
ly_points(Data2Chart[c(4,1)], hover = dat) %>%
ly_lines(Data2Chart[c(4,1)], legend = "X") %>%
y_axis(position = 'right') %>%
y_axis(position = 'left')