Open tamilyn opened 8 years ago
ggplotly does not display the error bars the same as ggplot (which I am assuming is the intention), but a workaround that mostly addresses the issue is to specify some additional parameters for the ggplotly. In this case the following parameters make the error bars look reasonable
geom_errorbar(aes(ymax = high-0.5, ymin=low-0.5,width=0.03,size=.01)
geom_errorbar - error bars are displayed incorrectly (wrong size) on the horizontal display (does not happen for the vertical (non coord_flip() version)
Sample to reproduce: