Creating a boxplot with Plotly library in R is straightforward as follows:
library (plotly) x <- 1:100 plot_ly (x = ~x, type = \'box\' )