I just discovered the newish ggplotly function that makes ggplot2 graphs into interactive plotly visualizations. This is great. But I also ran into an odd effect, possibly a
Maybe this:
gg <- ggplot(mtcars, aes(x=wt, y=mpg)) + geom_point() + coord_trans(y="log10") ggplotly(gg) %>% layout(yaxis = list(type="log", autorange=TRUE))