suppressPackageStartupMessages({
    library("plotlyutils")
    library("ggplot2")
    library("plotly")
})

g <- ggplot(mpg, aes(class))
g <- g + geom_bar(aes(fill=drv))
print(g)