yscale in ggplot2

# Learn about API authentication here: https://plot.ly/ggplot2/getting-started
# Find your api_key here: https://plot.ly/settings/api

library(plotly)

ggplot(diamonds, aes(color, log10(price))) +
    geom_boxplot() +
    scale_y_continuous("Price, log10-scaling")

ggplotly()
Inspired by Stack Overflow.